``` typescript type foo = 'hey' | 'nay'; switch (<foo>undefined) { case 'boom': console.log('never the case'); break; // expected unreachable code, actual no problem } ```