TypeScript/tests/cases/conformance/es6/templates/templateStringInSwitchAndCase.ts
2014-10-23 15:06:05 -07:00

6 lines
110 B
TypeScript

switch (`abc${0}abc`) {
case `abc`:
case `123`:
case `abc${0}abc`:
`def${1}def`;
}