mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 09:20:53 +07:00
6 lines
109 B
Java
6 lines
109 B
Java
// "Make 'foo()' default" "true-preview"
|
|
interface I {
|
|
default void foo() {
|
|
System.out.println();
|
|
}
|
|
} |