mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-18 14:04:25 +07:00
301efb1be6
(cherry picked from commit 03b253b084ddb93ce485b1997d47a4b00284eb74)
9 lines
116 B
Java
9 lines
116 B
Java
interface Var {
|
|
void var(int... ps);
|
|
}
|
|
|
|
class Abc {
|
|
void foo() {
|
|
Var var = (int[] ps) -> {};
|
|
}
|
|
} |