blob: c8b29ed35ceb1e8f0e59571a6df1b92ea3245a61 [file] [log] [blame]
interface Var {
void var(int[] ps);
}
class Abc {
void foo() {
Var var = (int... ps) -> {};
}
}