TypeScript/tests/baselines/reference/templateStringWithEmbeddedDivisionES6.types

9 lines
270 B
Plaintext
Raw Normal View History

=== tests/cases/conformance/es6/templates/templateStringWithEmbeddedDivisionES6.ts ===
var x = `abc${ 1 / 1 }def`;
2015-04-13 23:01:57 +02:00
>x : string, Symbol(x, Decl(templateStringWithEmbeddedDivisionES6.ts, 0, 3))
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