blob: fc0353e73fb8ec2ab0c0ad4ecb9d849abc90bd44 [file] [log] [blame]
class Set<T> {}
class Collections {
static <T> Set<T> emptySet() {}
}
class Bar {
{
foo(Collections.e<caret>)
}
void foo(Set<String> set){}
}