TypeScript/tests/baselines/reference/templateStringWithEmbeddedFunctionExpressionES6.types

8 lines
236 B
Text
Raw Normal View History

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