blob: d2afeee27be6a9f71d63d14eb4e7145c29b61957 [file] [log] [blame]
// "Add explicit type arguments" "true"
import java.util.List;
import java.util.Collections;
class Example {
Example(List<String> list) {}
void g() {
new Example(<caret>Collections.emptyList());
}
}