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