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