mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 11:11:30 +03:00
13 lines
170 B
TypeScript
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;
|
|
} |