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