Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/simplifyBooleanExpressionFix/beforeAnnotationMethod.java
Ilyas Selimov 3642a47796 DFA - moved the tests associated with "Simplify" quick-fix to a dedicated place
GitOrigin-RevId: 8bd67d61335fc77c2f8e115bfda45ade06041283
2021-05-18 10:27:41 +00:00

8 lines
195 B
Java

// "Simplify 'my.value() == null' to false" "true"
class Test {
void some(SuppressWarnings my) {
if (my == null || my.value() =<caret>= null) {
System.out.println("null");
}
}
}