TypeScript/tests/baselines/reference/templateStringWithBackslashEscapes01.types
Daniel Rosenwasser c7db1c3781 Added baselines.
2015-04-16 15:54:14 -07:00

20 lines
359 B
Plaintext

=== tests/cases/conformance/es6/templates/templateStringWithBackslashEscapes01.ts ===
var a = `hello\world`;
>a : string
>`hello\world` : string
var b = `hello\\world`;
>b : string
>`hello\\world` : string
var c = `hello\\\world`;
>c : string
>`hello\\\world` : string
var d = `hello\\\\world`;
>d : string
>`hello\\\\world` : string