Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/createCastExpressionFromInstanceof/beforeNegationOnRef.java

10 lines
127 B
Java

// "Cast to 'Runnable'" "false"
class C {
void f(Object o) {
if (!(o instanceof Runnable)) {
o<caret>
}
}
}