Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/replacePrimitiveWithBoxed/beforeInstanceofNotConvertible.java
Andrey.Cherkasov 23fbe72cac [java-highlighting] Provide fixes for unexpected primitive type pattern: fixes after review (IJ-CR-15006)
GitOrigin-RevId: 7d13a79dbf52273c15f6d24b4957a68d8e1e9715
2021-10-18 20:45:04 +00:00

6 lines
134 B
Java

// "Replace 'int' with 'java.lang.Integer'" "false"
class Test {
void foo(String o) {
boolean b = o instanceof int<caret>;
}
}