mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-14 17:25:38 +07:00
11 lines
188 B
Java
11 lines
188 B
Java
class C {
|
|
class I {}
|
|
class A extends I {}
|
|
class B extends I {}
|
|
|
|
<T> T f(T t1, T t2) {return null;}
|
|
|
|
void foo () {
|
|
Object o = <ref>f (new A(), new B ());
|
|
}
|
|
} |