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

8 lines
182 B
Plaintext

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