Files
openide/java/java-tests/testData/inspection/dataFlow/unreachableCode/UnresolvedCast.java
T

11 lines
276 B
Java

class Test {
void test(Object obj) {
try {
System.out.println((<error descr="Cannot resolve symbol 'MyUnresolvedClass'">MyUnresolvedClass</error>)obj);
System.out.println("hello");
} catch (Exception e) {
throw new RuntimeException(e);
}
}
}