mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 01:43:57 +07:00
GitOrigin-RevId: 74272ab0afe9315626c5aae33c58f5448e5d2ce8
11 lines
189 B
Java
11 lines
189 B
Java
interface Test {
|
|
int implicitStatic = 42;
|
|
|
|
default void test(){
|
|
newMethod();
|
|
}
|
|
|
|
private static void newMethod() {
|
|
System.out.println(implicitStatic);
|
|
}
|
|
} |