blob: d488f84ad544a3255191dc2b1a65c013d3697648 [file] [log] [blame]
import java.util.*;
class A_testLocalVarCast_in {
public void foo(){
ArrayList x = new ArrayList();
ArrayList o = x;
List y = (List)o;
}
}