blob: cc45ec74e1ff3e450f2eb09f0335368c3720ef42 [file] [log] [blame]
//11, 20 -> 11, 26 AllowLoadtime == true
package p;
class R {
static int rG() {
return 2;
}
static class S extends R {
private static final int CONSTANT= R.rG();
int f(){
int d= CONSTANT;
return d;
}
}
}