mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
- fixes - not double error messages GitOrigin-RevId: 8f789243ee4e09d3eb8de6a2db7dcbe25ee517db
13 lines
238 B
Java
13 lines
238 B
Java
class IncompleteSwitchFixColon {
|
|
|
|
public void testStatement(char o) {
|
|
|
|
switch (o) {
|
|
case '2':
|
|
System.out.println("1");
|
|
break;
|
|
case '1'<caret><EOLError descr="':' or '->' expected"></EOLError>
|
|
}
|
|
}
|
|
}
|