TypeScript/tests/baselines/reference/taggedTemplateStringsHexadecimalEscapesES6.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
360 B
Plaintext

=== tests/cases/compiler/taggedTemplateStringsHexadecimalEscapesES6.ts ===
function f(...args: any[]) {
>f : (...args: any[]) => void
>args : any[]
}
f `\x0D${ "Interrupted CRLF" }\x0A`;
>f `\x0D${ "Interrupted CRLF" }\x0A` : void
>f : (...args: any[]) => void
>`\x0D${ "Interrupted CRLF" }\x0A` : string
>"Interrupted CRLF" : "Interrupted CRLF"