blob: 52a2dfff276906432476a805c37eeec1dd8425f0 [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.empt<caret>yList());
}
public Foo(Integer i, List<String> list) {
}
}