Files
2024-03-13 21:17:52 +00:00

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 {}
}