blob: 0e12a9c9999ff676cd823644868384819d5b1a0e [file] [log] [blame]
//11, 20 -> 11, 24 AllowLoadtime == true
package p;
class R {
int rF() {
return 1;
}
static class S extends R {
int f(){
int t= rF();
return t * t;
}
}
}