TypeScript/tests/cases/conformance/es6/templates/templateStringInFunctionParameterType.ts

5 lines
90 B
TypeScript
Raw Normal View History

function f(`hello`);
function f(x: string);
function f(x: string) {
return x;
}