blob: f66f2d84131e8c15dba517ae14a05ebc25626fb8 [file] [log] [blame]
import java.util.*;
class A_testParameterTypeWithOverride_in {
static class X {
public void foo(List v1){
Collection c = v1;
}
}
static class Y extends X {
public void foo(List v2){
v2 = new ArrayList();
}
}
}