Files
2022-10-12 17:24:24 +00:00

10 lines
132 B
Java

// "Make 'I.foo()' public" "true-preview"
interface I {
default void foo() { }
}
class A implements I {
{
this.foo();
}
}