TypeScript/tests/baselines/reference/templateStringInArrowFunctionES6.types

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