mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
13 lines
219 B
Java
13 lines
219 B
Java
class MyTest {
|
|
|
|
interface I {
|
|
void _(MyTest receiver, Integer i);
|
|
}
|
|
|
|
void m(Integer i) {}
|
|
|
|
public static void main(String[] args) {
|
|
I i = MyTest :: m;
|
|
i._(new MyTest(), 1);
|
|
}
|
|
} |