TypeScript/tests/baselines/reference/templateStringWithEmbeddedMultiplication.types

6 lines
152 B
Text
Raw Normal View History

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