Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/joinDeclaration/beforeOtherVariable.java

8 lines
126 B
Java

// "Join declaration and assignment" "false"
class C {
void test() {
String t;
String <caret>s;
t = "foo";
}
}