DEBSOURCES
Skip Quicknav
sources / node-typescript / 5.2.2-1 / tests / cases / compiler / signatureLengthMismatchWithOptionalParameters.ts
12345
function callee(n: number | undefined, m: string) { } function caller(arg: (n?: number) => void) { } caller(callee);