blob: 08841589c9d9acbc44f95229401f704cab70f5a5 [file] [log] [blame]
// "Add explicit type arguments to 2nd argument" "true"
import java.util.Collections;
import java.util.List;
class Foo {
public static void main(String[] args) {
new Foo(1, Collections.<String>emptyList());
}
public Foo(Integer i, List<String> list) {
}
}