Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogblamecommitdiffstats
blob: f927fad9449055d558501391b5ef7a691fd4fcfe (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                
package test0429;

class C {
  private int fCoo;
}

public class A extends C {
  public static void goo(C c) {
    c.fCoo= 1;
  }
}

Back to the top