smart completion tests -> community
[fedora-idea.git] / java / java-tests / testData / codeInsight / completion / smartType / CollectionsEmptySetInTernary2-out.java
blobe0081fbd8123c6211cdb065e3801bd292f249878
1 class Set<T> {}
3 class Collections {
4 static <T> Set<T> emptySet() {}
7 class Bar {
9 Set<String> bar() {
10 return true ? null : Collections.<String>emptySet();<caret>
13 void foo(Set<String> set){}