mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 14:50:53 +07:00
10 lines
143 B
Java
10 lines
143 B
Java
class C1 {}
|
|
class C2 extends C1 {}
|
|
|
|
class C {
|
|
<T> T foo (T... ts) { return null; }
|
|
|
|
void bar () {
|
|
<caret>foo(new C2(), new C1());
|
|
}
|
|
} |