blob: df2f89aa5ff42c20e1da44987a3c28cd1ca2ff9b [file] [log] [blame]
//5, 16 -> 5, 17 AllowLoadtime == false, qualifyReferencesWithClassName= true
package p;
class ClassName {
private static final int CONSTANT= 0;
int f() {
return ClassName.CONSTANT;
}
class Nested {
{
System.out.println(ClassName.CONSTANT);
}
void f() {
int i= ClassName.CONSTANT;
}
}
}