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