mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
9 lines
216 B
Java
9 lines
216 B
Java
// "Join declaration and assignment" "GENERIC_ERROR_OR_WARNING"
|
|
class C {
|
|
int foo(int x) {
|
|
int <caret>a;
|
|
int b = System.in.read();
|
|
a = x + 1; /*A*/ /*B*/ // C
|
|
return a + b;
|
|
}
|
|
} |