mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 16:20:55 +07:00
11 lines
190 B
Java
11 lines
190 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 = <caret>f (new A(), new B ());
|
|
}
|
|
} |