blob: 4d28bf7471656b55dda24d353f28a6ca2c7ffc1a [file] [log] [blame]
//13, 20 -> 13, 35 AllowLoadtime == true
package p;
class R {
public static R instance= new R();
int rF() {
return 1;
}
static class S extends R {
int f(){
int d= R.instance.rF();
return 0;
}
}
}