TypeScript/tests/baselines/reference/templateStringWithEmbeddedMultiplication.types

9 lines
208 B
Plaintext
Raw Normal View History

=== tests/cases/conformance/es6/templates/templateStringWithEmbeddedMultiplication.ts ===
var x = `abc${ 7 * 6 }def`;
>x : string
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