smart completion tests -> community
[fedora-idea.git] / java / java-tests / testData / codeInsight / completion / smartType / second / Generics-out.java
blobd5269cc1cc51eff4f5319f0eff79306cc21a9f0d
1 class Bar<T> {
2 T getGoo(int a);
4 class Goo {}
6 class Foo {
7 Bar<Goo> bgetBar() {}
11 Goo g = bgetBar().getGoo(<caret>);