mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 08:00:18 +07:00
Part of IDEA-365344 Create a new Java error highlighter with minimal dependencies (PSI only) GitOrigin-RevId: 463b1549d45bf98586e6ae9dafb4bc4b330bbe52
18 lines
459 B
Java
18 lines
459 B
Java
class C {
|
|
public static void main(String[] args) {
|
|
switch (args.length) {
|
|
|
|
<error descr="Statement must be prepended with a case label">return;</error>
|
|
case 1:
|
|
System.out.println("");
|
|
System.out.println("");
|
|
System.out.println("");
|
|
System.out.println("");
|
|
case 2:
|
|
System.out.println("");
|
|
System.out.println("");
|
|
System.out.println("");
|
|
System.out.println("");
|
|
}
|
|
}
|
|
} |