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