blob: 6da1ace7b390af977868e3938b2e93cd414a05ef [file] [log] [blame]
// "Add explicit type arguments" "true"
import java.util.Collection;
import java.util.Collections;
class Example {
void f(Collection<String> list) {}
void g() {
f(<caret>Collections.emptyList());
}
}