mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-22 04:45:29 +07:00
15 lines
220 B
Java
15 lines
220 B
Java
class Test {
|
|
@FunctionalInterface
|
|
interface I {
|
|
void f() throws Exception;
|
|
}
|
|
|
|
void bar() {
|
|
foo();
|
|
}
|
|
|
|
void foo() {
|
|
<selection>System.out.println("");
|
|
System.out.println("");</selection>
|
|
}
|
|
} |