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

9 lines
229 B
Plaintext

=== 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
>`abc${ x }def` : string
>x : any