swc/crates/swc_ecma_parser/tests/tsc/templateStringWithBackslashEscapes01_ES6.ts

6 lines
117 B
TypeScript

// @target: es6
var a = `hello\world`;
var b = `hello\\world`;
var c = `hello\\\world`;
var d = `hello\\\\world`;