<!-- 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.1.4 **Code** ```ts interface State { num: number } function setState(state: Partial<State>) { } setState((a, b) => ({ x: 7 })) // no errors ``` **Expected behavior:** Does not compile. **Actual behavior:** Compiles without errors.