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

9 lines
284 B
Plaintext

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