blob: 7f0b8ad96742aeddd7e182513060b133b0e9e092 [file] [log] [blame]
import java.util.*;
class A_testReturnTypeWithCall_in {
public AbstractList foo(){
return new ArrayList();
}
public void bar(){
List l = this.foo();
}
}