in https://github.com/Microsoft/TypeScript/pull/3823 ``` typescript interface A { } var a : A = { // valid code, but expected a problem in 1.6, since x, y, z don't belong to A x: 1, y: 2, z: 3 }; ```