blob: 376d604f3cb186804652a05b7e8b4240faffaab0 [file] [log] [blame]
class Sample {
interface G<A> {}
interface G1 extends G {}
void foo(G1 g1) {
bar(g1);
}
<B>void bar(G<B> gb) {}
void foo(G1[] g1) {
bar(g1);
}
<B>void bar(G<B>[] gb) {}
}