Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/negationBroadScope/after1.java
2010-06-25 12:46:40 +04:00

7 lines
114 B
Java

// "Change to '!(1 == 1)'" "true"
public class Foo {
void task() {
if (<caret>!(1 == 1)) {}
}
}