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

10 lines
123 B
Java

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