blob: 001007d8ee3de7e823c3aea5d3b22606832b241a [file] [log] [blame]
//12, 20 -> 12, 28 AllowLoadtime == true
package p;
class R {
static int rG() {
return 2;
}
static class S extends R {
void f(){
int d= p.R.rG();
}
}
}