blob: fced81f5c0f01c2b1902ce4c1fa8953e4f9c5fee [file] [log] [blame]
package test0427;
class C {
private int fCoo;
}
public class A extends C {
public static void goo(C c) {
super.fCoo= 1;
/* C.fCoo= 1;
c.fCoo= 1;*/
}
}