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