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

9 lines
287 B
Plaintext

=== tests/cases/conformance/es6/templates/templateStringWithEmbeddedFunctionExpressionES6.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