blob: e0081fbd8123c6211cdb065e3801bd292f249878 [file] [log] [blame]
class Set<T> {}
class Collections {
static <T> Set<T> emptySet() {}
}
class Bar {
Set<String> bar() {
return true ? null : Collections.<String>emptySet();<caret>
}
void foo(Set<String> set){}
}