mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 00:20:55 +07:00
11 lines
133 B
Java
11 lines
133 B
Java
interface I {
|
|
void m(int b, int a);
|
|
}
|
|
|
|
class Test {
|
|
{
|
|
I i = (b, a) -> foo(a, b);
|
|
}
|
|
|
|
private void foo(int a, int b) {}
|
|
} |