<!-- 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.0.3 **Code** noUnusedParameters flag is set ``` ts const f = ([a]) => {}; f([1]); ``` **Expected behavior:** should give an "'a' is declared but never used" error **Actual behavior:** nothing