Skip to main content
summaryrefslogtreecommitdiffstats
blob: f927fad9449055d558501391b5ef7a691fd4fcfe (plain) (blame)
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