<!-- BUGS: Please use this template. --> <!-- QUESTIONS: This is not a general support forum! Ask Qs at http://stackoverflow.com/questions/tagged/typescript --> <!-- SUGGESTIONS: See https://github.com/Microsoft/TypeScript-wiki/blob/master/Writing-Good-Design-Proposals.md --> **TypeScript Version:** Version 2.1.0-dev.20160927 **Code** ``` ts const a = false; const b = a === true; // Operator '===' cannot be applied to types 'false' and 'true'. const c = true === false; // that is ok ```