mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 07:55:31 +07:00
GitOrigin-RevId: 4c6c8ccfe4989393d604cb7482ea5147494836b5
13 lines
280 B
Java
13 lines
280 B
Java
|
|
class Test {
|
|
void test(Object obj) {
|
|
try {
|
|
<error descr="Cannot resolve method 'unresolved' in 'Test'">unresolved</error>(obj);
|
|
System.out.println("hello");
|
|
} catch (Ex e) {
|
|
throw new RuntimeException(e);
|
|
}
|
|
}
|
|
|
|
class Ex extends Exception {}
|
|
} |