TypeScript/tests/baselines/reference/templateStringInPropertyNameES6_2.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

13 lines
273 B
Plaintext

=== tests/cases/conformance/es6/templates/templateStringInPropertyNameES6_2.ts ===
var x = {
>x : any
>{ `abc${ 123 }def${ 456 }ghi` : any
>{ : {}
`abc${ 123 }def${ 456 }ghi`: 321
>`abc${ 123 }def${ 456 }ghi` : string
>123 : 123
>456 : 456
>321 : 321
}