mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-23 18:03:06 +07:00
9 lines
168 B
Java
9 lines
168 B
Java
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();
|
|
}
|
|
}
|
|
} |