smart completion tests -> community
[fedora-idea.git] / java / java-tests / testData / codeInsight / completion / smartType / UserDataListAddAll.java
blobd8e40cd6cb387460d061b7044577eb113be7acc7
1 class List<T> {
2 void addAll(List<? extends T> l);
5 class Key<T> {}
7 class FooBase {
8 Key<List<String>> STRING_LIST;
10 <T> T get(Key<T> key);
13 List<String> l;
14 l.addAll(get(S<caret>))