TypeScript/tests/baselines/reference/templateStringInFunctionExpression.types
2015-04-15 16:44:20 -07:00

16 lines
360 B
Plaintext

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