mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 00:20:55 +07:00
12 lines
153 B
Plaintext
12 lines
153 B
Plaintext
class Bar0 {
|
|
void foo(Integer i) { }
|
|
}
|
|
class Bar {
|
|
void f() {
|
|
I r = (i, bar) -> bar.foo(i);
|
|
}
|
|
|
|
}
|
|
interface I {
|
|
void m(Integer i, Bar0 b);
|
|
} |