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