blob: e1fdee44ecfc3ebb4668220dcdb59e8affd52c17 [file] [log] [blame]
class List<Z>{
<T extends Z> void put(T t){
}
void mut(List<? extends Z> t){
}
}
class Test{
void foo(){
List x = null;
x.mut(new List<Integer>());
}
}