mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-06-18 20:17:53 +07:00
1cd4624083
Test data is corrected in order to follow new static vs instance methods ordering policy
12 lines
183 B
Java
12 lines
183 B
Java
class Test {
|
|
public static final String S = "";
|
|
|
|
static void foo(){
|
|
System.out.println(S);
|
|
}
|
|
|
|
void bar() {
|
|
System.out.println(Test.S);
|
|
Test.foo();
|
|
}
|
|
} |