mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 02:25:56 +07:00
GitOrigin-RevId: 74272ab0afe9315626c5aae33c58f5448e5d2ce8
7 lines
146 B
Java
7 lines
146 B
Java
interface Test {
|
|
int implicitStatic = 42;
|
|
|
|
default void test(){
|
|
<selection>System.out.println(implicitStatic);</selection>
|
|
}
|
|
} |