Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/unwrapIfStatement/beforeConflictingVariables.java

9 lines
145 B
Java

// "Unwrap 'if' statement" "true"
class X {
void f() {
if (tru<caret>e) {
int i = 0;
}
int i = 0;
}
}