TypeScript/tests/baselines/reference/templateStringWithEmbeddedArrowFunction.types
2015-04-13 14:29:37 -07:00

9 lines
416 B
Plaintext

=== tests/cases/conformance/es6/templates/templateStringWithEmbeddedArrowFunction.ts ===
var x = `abc${ x => x }def`;
>x : string, Symbol(x, Decl(templateStringWithEmbeddedArrowFunction.ts, 0, 3))
>`abc${ x => x }def` : string
>x => x : (x: any) => any
>x : any, Symbol(x, Decl(templateStringWithEmbeddedArrowFunction.ts, 0, 14))
>x : any, Symbol(x, Decl(templateStringWithEmbeddedArrowFunction.ts, 0, 14))