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

8 lines
233 B
Plaintext

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