mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-15 05:43:47 +07:00
10 lines
131 B
Java
10 lines
131 B
Java
class C1 {}
|
|
class C2 extends C1 {}
|
|
|
|
class C {
|
|
<T> T foo (T... ts) { return null; }
|
|
|
|
void bar () {
|
|
<ref>foo(new C2());
|
|
}
|
|
} |