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

8 lines
200 B
Plaintext

=== 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
>x : any