blob: 20dc190ccf047f18d187a2a7776e7ef5704eff3e [file] [log] [blame]
//10, 28 -> 10, 44 AllowLoadtime == true
package p;
class S {
public static S instance= new S();
private static final int CONSTANT= S.instance.s + 1;
int s;
int f() {
System.out.println(CONSTANT);
return 1;
}
}