blob: 0227c3a3d31ef34ace819c424e18b4c23de465f8 [file] [log] [blame]
import java.util.ArrayList;
interface FooInterface {
ArrayList<? extends Foo.SomeClass> foo();
}
public class Foo implements FooInterface {
@Override
public ArrayList<SomeClass> foo() {
return null;
}
public static class SomeClass {
}
}