mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
9 lines
155 B
Java
9 lines
155 B
Java
class Test4 {
|
|
void test() {
|
|
Foo2<Test4> f = Test4::yyy;
|
|
}
|
|
static void yyy(Test4 anObject) {}
|
|
}
|
|
interface Foo2<T> {
|
|
void bar(T j);
|
|
} |