swc/crates/swc_ecma_parser/tests/tsc/genericRestArityStrict.ts

11 lines
247 B
XML

// @strict: true
// Repro from #25559
declare function call<TS extends unknown[]>(
handler: (...args: TS) => void,
...args: TS): void;
call((x: number, y: number) => x + y);
call((x: number, y: number) => x + y, 1, 2, 3, 4, 5, 6, 7);