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