mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-30 12:34:00 +07:00
12 lines
287 B
Java
12 lines
287 B
Java
class C {
|
|
public static void main(String[] args) {
|
|
switch (args.length) {
|
|
case 1:
|
|
<error descr="Cannot resolve symbol 'foo'">foo</error>.bar;
|
|
break;
|
|
case 2:
|
|
(<error descr="Cannot resolve symbol 'baz'">baz</error>).bar;
|
|
break;
|
|
}
|
|
}
|
|
} |