mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-05 21:53:58 +07:00
GitOrigin-RevId: c9098e741070cddd1c89936045481521d5823bf7
11 lines
276 B
Java
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);
|
|
}
|
|
}
|
|
} |