blob: 1f34151d6bf684ab23fc807475b893c219ddd643 [file] [log] [blame]
class List<T> {
T t;
}
interface A {
List get();
}
class Test{
void foo(){
List x = new A() {
public List get(){
return new List<String>();
}
}.get();
}
}