blob: ae366f701dda49afea4f9823fecc398302fd5f02 [file] [log] [blame]
//15, 20 -> 15, 37 AllowLoadtime == false
package p;
class R {
static R instance() {
return null;
}
int rF() {
return 1;
}
static class S extends R {
int f(){
int d= R.instance().rF();
return 0;
}
}
}