TypeScript/tests/cases/conformance/es6/templates/templateStringInSwitchAndCase.ts

6 lines
110 B
TypeScript
Raw Normal View History

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