blob: 409bbeee62ae582bf4608602dd4a52741ccba444 [file] [log] [blame]
class Test {
public static final String S = "";
static void foo(){
System.out.println(S);
}
void bar() {
System.out.println(Test.S);
Test.foo();
}
}