TypeScript/tests/baselines/reference/templateStringInArrowFunction.types

8 lines
200 B
Text
Raw Normal View History

=== 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
2014-11-07 23:13:38 +01:00
>x : any