smart completion tests -> community
[fedora-idea.git] / java / java-tests / testData / codeInsight / completion / smartType / CollectionsEmptySetInMethodCall.java
blobfc0353e73fb8ec2ab0c0ad4ecb9d849abc90bd44
1 class Set<T> {}
3 class Collections {
4 static <T> Set<T> emptySet() {}
7 class Bar {
10 foo(Collections.e<caret>)
13 void foo(Set<String> set){}