TypeScript/tests/baselines/reference/templateStringWithEmbeddedDivision.types

9 lines
202 B
Plaintext
Raw Normal View History

=== tests/cases/conformance/es6/templates/templateStringWithEmbeddedDivision.ts ===
var x = `abc${ 1 / 1 }def`;
>x : string
2015-04-13 21:36:11 +02:00
>`abc${ 1 / 1 }def` : string
>1 / 1 : number
2015-04-13 21:36:11 +02:00
>1 : number
>1 : number