TypeScript/tests/baselines/reference/templateStringWithEmbeddedDivisionES6.types
Daniel Rosenwasser cce4bfbc7c
Revert changes for template literal types, keeping tests. (#42588)
* Revert changes for template literal types, keeping tests.

* Update Baselines and/or Applied Lint Fixes

Co-authored-by: TypeScript Bot <typescriptbot@microsoft.com>
2021-02-03 14:49:03 -08:00

9 lines
195 B
Plaintext

=== tests/cases/conformance/es6/templates/templateStringWithEmbeddedDivisionES6.ts ===
var x = `abc${ 1 / 1 }def`;
>x : string
>`abc${ 1 / 1 }def` : string
>1 / 1 : number
>1 : 1
>1 : 1