mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-06-16 21:39:20 +07:00
0d546c389a
Test data is corrected in order to follow new static vs instance methods ordering policy
8 lines
112 B
Java
8 lines
112 B
Java
class Test {
|
|
static int bar(){return 1;}
|
|
|
|
void foo() {
|
|
Test s = new Test();
|
|
s.bar();
|
|
}
|
|
} |