mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 18:09:38 +07:00
Also suggest 'introduce local variable' as a quick-fix GitOrigin-RevId: 2a15a1d35ed1755ab043a40a06136ed946c4a516
9 lines
311 B
Java
9 lines
311 B
Java
class C {
|
|
void foo(int i, int j) {
|
|
<error descr="Not a statement">123</error>
|
|
<error descr="Not a statement">i+j</error> /*oops*/
|
|
foo(1, 2)<EOLError descr="';' expected"></EOLError>
|
|
i++<EOLError descr="';' expected"></EOLError>
|
|
toString()<error descr="';' expected"> </error>/*oops*/
|
|
}
|
|
} |