TypeScript/tests/baselines/reference/templateStringWithEmbeddedMultiplication.types
2015-04-15 16:44:20 -07:00

9 lines
208 B
Plaintext

=== tests/cases/conformance/es6/templates/templateStringWithEmbeddedMultiplication.ts ===
var x = `abc${ 7 * 6 }def`;
>x : string
>`abc${ 7 * 6 }def` : string
>7 * 6 : number
>7 : number
>6 : number