Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/replacePrimitiveWithBoxed/afterInstanceof.java
T

6 lines
130 B
Java

// "Replace 'int' with 'java.lang.Integer'" "true"
class Test {
void foo(Object o) {
boolean b = o instanceof Integer;
}
}