TypeScript/tests/baselines/reference/taggedTemplatesWithIncompleteNoSubstitutionTemplate2.js

14 lines
334 B
TypeScript

//// [taggedTemplatesWithIncompleteNoSubstitutionTemplate2.ts]
function f(x: TemplateStringsArray, y: string, z: string) {
}
// Incomplete call, not enough parameters, at EOF.
f `
//// [taggedTemplatesWithIncompleteNoSubstitutionTemplate2.js]
function f(x, y, z) {
}
// Incomplete call, not enough parameters, at EOF.
f `;