mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-05 02:24:00 +07:00
GitOrigin-RevId: 1cfc8afb26b5db175d865f6bbdc752356040d8bb
12 lines
143 B
Java
12 lines
143 B
Java
// "Make 'I.foo()' static" "true-preview"
|
|
interface I {
|
|
static void foo() {
|
|
System.out.println();
|
|
}
|
|
}
|
|
|
|
class B {
|
|
{
|
|
I.foo();
|
|
}
|
|
} |