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