function foo(x: T) { x = { a: "abc", b: 20, c: 30 }; } function bar(x: T) { x = { a: 20 }; } function baz(x: T) { x = { a: "not ok" }; }