mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-31 22:56:53 +07:00
15 lines
217 B
Java
15 lines
217 B
Java
class Test {
|
|
|
|
public static void main(String[] args){
|
|
<selection>I i = ExceptionTest::foo;</selection>
|
|
}
|
|
|
|
class Ex extends Exception {}
|
|
|
|
static void foo() throws Ex {}
|
|
|
|
interface I {
|
|
void f();
|
|
}
|
|
}
|