smart completion tests -> community
[fedora-idea.git] / java / java-tests / testData / codeInsight / completion / smartType / TypeVariableInstanceOf.java
blob0c9030f4edef1c255a007516cef6cf8c9951bc13
1 interface Foo {}
2 class Bar implements Foo {}
3 class Goo implements Foo {}
5 class Main<T extends Foo> {
7 T t;
8 if (t instanceof <caret>)