mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-23 14:31:48 +07:00
21cc3d6654
GitOrigin-RevId: 3492248e09aa19e702597165d9cc6c33ffd33285
12 lines
141 B
Java
12 lines
141 B
Java
// "Make 'I.foo' static" "true"
|
|
interface I {
|
|
default void foo() {
|
|
System.out.println();
|
|
}
|
|
}
|
|
|
|
class B {
|
|
{
|
|
I.f<caret>oo();
|
|
}
|
|
} |