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

16 lines
216 B
TypeScript

type S = "a" | "b";
type T = S[] | S;
function isS(t: T): t is S {
return t === "a" || t === "b";
}
function f(foo: T) {
if (isS(foo)) {
return foo;
}
else {
return foo[0];
}
}