Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/joinDeclaration/beforeFarDeclarationAtVariable.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;
}
}