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

11 lines
219 B
Java

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