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

9 lines
135 B
Java

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