mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 12:20:55 +07:00
9 lines
141 B
Java
9 lines
141 B
Java
class Test4 {
|
|
void test() {
|
|
Foo2<Test4> f = Test4::yyy;
|
|
}
|
|
void yy<caret>y() {}
|
|
}
|
|
interface Foo2<T> {
|
|
void bar(T j);
|
|
} |