TypeScript/tests/baselines/reference/templateStringWithEmbeddedMultiplication.types
2014-10-23 15:06:05 -07:00

6 lines
152 B
Plaintext

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