TypeScript/tests/baselines/reference/templateStringWithEmbeddedMultiplication.types

9 lines
276 B
Text
Raw Normal View History

=== tests/cases/conformance/es6/templates/templateStringWithEmbeddedMultiplication.ts ===
var x = `abc${ 7 * 6 }def`;
2015-04-13 23:01:57 +02:00
>x : string, Symbol(x, Decl(templateStringWithEmbeddedMultiplication.ts, 0, 3))
2015-04-13 21:36:11 +02:00
>`abc${ 7 * 6 }def` : string
>7 * 6 : number
2015-04-13 21:36:11 +02:00
>7 : number
>6 : number