mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 01:50:56 +07:00
34 lines
553 B
Java
34 lines
553 B
Java
class MyTest<E> {
|
|
MyTest(E e) {
|
|
}
|
|
|
|
interface I<T> {
|
|
MyTest<T> m(T t);
|
|
}
|
|
|
|
static <Y> void bar(Y arg, I<Y> i) {
|
|
i.m(arg);
|
|
}
|
|
|
|
static <Y> void bar(I<Y> i, Y arg) {
|
|
i.m(arg);
|
|
}
|
|
|
|
static <Y> void bar(I<Y> i) {
|
|
i.m(null);
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
I<String> i = MyTest::new;
|
|
|
|
bar("", MyTest<String>::new);
|
|
bar("", MyTest::new);
|
|
|
|
bar(MyTest<String>::new, "");
|
|
bar(MyTest::new, "");
|
|
|
|
bar(MyTest::new);
|
|
bar(MyTest<String>::new);
|
|
}
|
|
}
|