TypeScript/tests/baselines/reference/templateStringWithEmbeddedArrowFunctionES6.types
2014-10-23 15:06:05 -07:00

8 lines
185 B
Plaintext

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