TypeScript/tests/cases/conformance/types/literal/stringLiteralsWithEqualityChecks01.ts

23 lines
350 B
TypeScript
Raw Normal View History

2016-07-07 06:00:47 +02:00
let x: "foo";
let y: "foo" | "bar";
let b: boolean;
b = x === y;
b = "foo" === y
b = y === "foo";
b = "foo" === "bar";
b = "bar" === x;
b = x === "bar";
b = y === "bar";
b = "bar" === y;
b = x !== y;
b = "foo" !== y
b = y !== "foo";
b = "foo" !== "bar";
b = "bar" !== x;
b = x !== "bar";
b = y !== "bar";
b = "bar" !== y;