<!-- 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:** 2.5.3 **Code** ```ts if (Math.floor(1.2), 2) { // do something } ``` **Expected behavior:** error TS2695: Left side of comma operator is unused and has no side effects. **Actual behavior:**  Nothing happened. But can get error like this. 