smart completion tests -> community
[fedora-idea.git] / java / java-tests / testData / codeInsight / completion / smartType / CollectionsEmptySetInTernary2.java
blobf0d94b4faf69c51b554e95ad7ac08e82bd007e61
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.e<caret>
13 void foo(Set<String> set){}