**TypeScript Version:** nightly (2.1.0-dev.20161102) **Code** ```ts interface Test { foo: string } function bar(): Test { const foo = 'foo' return { foo } } ``` Rename `foo` on line `2` to `foo2` **Expected behavior:** ```ts interface Test { foo2: string } function bar(): Test { const foo = 'foo' return { foo2: foo } } ``` **Actual behavior:** ```ts interface Test { foo2: string } function bar(): Test { const foo = 'foo' return { foo2 } // <------- broken code } ```