Files
openide/java/java-tests/testData/codeInsight/completion/keywords/instanceofNegated_after.java
T
2020-02-10 11:03:00 +00:00

8 lines
84 B
Java

class Foo {
void test(Object o) {
if (!(o instanceof <caret>)) {
}
}
}