For example: ``` ts let x: string | number; if (typeof x === "string") { let n = class { constructor() { x; // Should be "string" but is "string | number". } } } ```