blob: 7d4cc3098612d5e6a6099557c82f21ec0e27abfc [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.<String>emptyList());
}
}