blob: 564e2f14b656e08f5bc07657cb744e8c203c7bc8 [file] [log] [blame]
class Sample {
interface G<A> {}
interface G1 extends G {}
<B> B bar(B b) {return null;}
void f(G1 g1) {
G<String> l11 = bar(g1);
}
}