blob: 64b582f7a1b18abb992964076fbbd3533ac852e8 [file] [log] [blame]
// "Add explicit type arguments" "true"
import java.util.List;
import java.util.Collections;
class Bar {
public static void main(String[] args) {
new Foo().fo<caret>o(Collections.emptyList());
}
}
class Foo {
void foo(List<java.util.Date> dates) { }
}