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