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