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

12 lines
143 B
Java

// "Make 'I.foo()' static" "true-preview"
interface I {
static void foo() {
System.out.println();
}
}
class B {
{
I.foo();
}
}