blob: bdbd11ba0c5f60dae4d76b39b5ecd0e3aed9b9a3 [file] [log] [blame]
import java.util.*;
interface Int {}
class Impl implements Int {
}
class Usage {
void f(List<Impl> l){}
void bar() {
f(Collections.<Impl>emptyList());
}
}