TypeScript/tests/baselines/reference/templateStringWithEmbeddedArrowFunctionES6.types

9 lines
216 B
Plaintext
Raw Normal View History

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