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

15 lines
184 B
TypeScript

let x: "foo";
let y: "foo" | "bar";
let b: boolean;
b = x == y;
b = "foo" == y
b = y == "foo";
b = "foo" == "bar";
b = x != y;
b = "foo" != y
b = y != "foo";
b = "foo" != "bar";