TypeScript/tests/baselines/reference/templateStringInArrowFunctionES6.types

9 lines
229 B
Plaintext
Raw Normal View History

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