mirror of
https://github.com/swc-project/swc.git
synced 2024-12-19 19:52:21 +03:00
13 lines
173 B
TypeScript
13 lines
173 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;
|
|||
|
}
|