Files
2022-08-22 17:58:06 +00:00

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();
}
}