blob: e0c0bb42d0d050e41a9d8b773f1b1209086a9e05 [file] [log] [blame]
class B {
public final A<String> myDelegate = new A<String>();
public List<? extends String> method1() {
return myDelegate.method1();
}
public String method2(String s) {
return myDelegate.method2(s);
}
}