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