TypeScript/tests/baselines/reference/templateStringWithEmbeddedFunctionExpressionES6.types

9 lines
287 B
Plaintext
Raw Normal View History

=== tests/cases/conformance/es6/templates/templateStringWithEmbeddedFunctionExpressionES6.ts ===
var x = `abc${ function y() { return y; } }def`;
>x : string
2015-04-13 21:36:11 +02:00
>`abc${ function y() { return y; } }def` : string
>function y() { return y; } : () => any
>y : () => any
>y : () => any