blob: 5aa99590e5118d436f95c18d9f3556f7912ee7a9 [file] [log] [blame]
//5, 16 -> 5, 35 AllowLoadtime == false
package p;
class A {
private static final int CONSTANT= getYetAnotherFred();
void f() {
int i= CONSTANT;
}
static int getYetAnotherFred(){
return 5;
}
}