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

9 lines
216 B
Plaintext

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