TypeScript/tests/baselines/reference/templateStringWithEmbeddedModulo.types

9 lines
260 B
Plaintext
Raw Normal View History

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