Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/unwrapIfStatement/afterConflictingBlock.java
2017-10-22 19:41:59 +02:00

11 lines
206 B
Java

// "Unwrap 'if' statement" "true"
class X {
void test(@org.jetbrains.annotations.NotNull String x) {
{
String str = x.trim();
System.out.println(str);
}
{{int str;}}
}
}