blob: 15b44de5568586e2a21a24cac3f62663296819b0 [file] [log] [blame]
import java.util.*;
class Test {
private static <T> List<T> bar(List<T> xs) { return xs; }
private static void gazonk() {
List<String> ss = bar(Collections.<String>emptyList());
}
}