TypeScript/tests/baselines/reference/templateStringInArrowFunctionES6.types
Daniel Rosenwasser c9919bb9ec Added baselines.
2014-11-07 14:13:38 -08:00

8 lines
203 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
>x : any