Files
openide/java/java-tests/testData/codeInsight/completion/keywords/instanceofNegated.java
Tagir Valeev d4914b0f5b IDEA-76990 Completion for 'instanceof' keyword in negative conditions.
GitOrigin-RevId: 07a917d6b5fbee806796237acd639341a90d49dc
2020-02-10 11:03:00 +00:00

8 lines
73 B
Java

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