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