TypeScript/tests/baselines/reference/templateStringInFunctionExpressionES6.types
2014-10-23 15:06:05 -07:00

10 lines
281 B
Plaintext

=== tests/cases/conformance/es6/templates/templateStringInFunctionExpressionES6.ts ===
var x = function y() {
>x : () => string
>function y() { `abc${ 0 }def` return `abc${ 0 }def`;} : () => string
>y : () => string
`abc${ 0 }def`
return `abc${ 0 }def`;
};