blob: 6e7d832b02d68038ad1e21b46bc52f1ebb34d3b1 [file] [log] [blame]
import java.util.*;
class B<V> implements A<V> {
public V getT(){return null;}
void foo(List<B<V>> list) {
for(B<V> b : list){
V v = b.getT();
}
}
}