blob: 66bc051cd302b71fdd0502bd6d6fc33c460f2570 [file] [log] [blame]
// "Add explicit type arguments" "true"
import java.util.*;
class Test {
static <T> List<T> f() { return new ArrayList<T>(); }
void g(List<Integer> a) {}
void someMethod() { g(<caret>f()); }
}