blob: 82a21f70978590b46f0c8e9a898232efbe00ae49 [file] [log] [blame]
class List<T> {
}
class Mist extends List<String>{
}
class foo<X extends List>{
X x;
}
class Test {
void foo (){
Mist y = null;
foo x = null;
x.x = y;
}
}