smart completion tests -> community
[fedora-idea.git] / java / java-tests / testData / codeInsight / completion / smartType / CastGenericQualifier.java
blobb84a1c5f4479505c84b416026be4f1f53a8fb7df
1 class A<T> {
2 T get() {
3 return null;
6 class B extends A<StringBuffer> {}
7 class C {
8 void m(A<?> a) {
9 if (a instanceof B) {
10 StringBuffer s = a.<caret>