blob: 53e3d1ff254c1e99136f67a55d65df7d9ddcc07d [file] [log] [blame]
import java.util.List;
class Test {
void foo() {
List<List<?>> a = bar();
}
<T> List<List<T>> bar() {
return null;
}
}