TypeScript/tests/cases/conformance/es6/templates/templateStringInFunctionParameterType.ts
2014-10-23 15:06:05 -07:00

5 lines
90 B
TypeScript

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