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

8 lines
226 B
Text

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