smart completion tests -> community
[fedora-idea.git] / java / java-tests / testData / codeInsight / completion / smartType / second / DontSuggestTooGenericMethods.java
blob99617ee3446172e1652ac2ae01f7f897d2c987df
1 interface Zip extends Bar{}
3 interface Bar {}
5 interface Foo {
6 <T> T any();
7 <T extends Goo> T gooAny();
8 <T extends Zip> T zipAny();
9 <T extends Bar> T barAny();
13 class Goo {
15 Foo f;
16 Bar a = f<caret>