TypeScript/tests/baselines/reference/templateStringWithEmbeddedArrowFunction.types

9 lines
213 B
Plaintext
Raw Normal View History

=== tests/cases/conformance/es6/templates/templateStringWithEmbeddedArrowFunction.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