TypeScript/tests/cases/conformance/es6/templates/templateStringWithBackslashEscapes01_ES6.ts
Daniel Rosenwasser a634e6770a Added tests.
2015-04-16 15:26:59 -07:00

6 lines
122 B
TypeScript

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