blob: 6b53b7b3f36edb0b78e88888478c68a88d20aec0 [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;
}
}
}