mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-04 06:32:48 +07:00
GitOrigin-RevId: 1cfc8afb26b5db175d865f6bbdc752356040d8bb
12 lines
151 B
Java
12 lines
151 B
Java
// "Make 'I.foo()' static" "true-preview"
|
|
interface I {
|
|
default void foo() {
|
|
System.out.println();
|
|
}
|
|
}
|
|
|
|
class B {
|
|
{
|
|
I.f<caret>oo();
|
|
}
|
|
} |