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

13 lines
170 B
TypeScript

type S = "a" | "b";
type T = S[] | S;
var foo: T;
switch (foo) {
case "a":
case "b":
break;
default:
foo = (foo as S[])[0];
break;
}