```ts declare var x: { readonly [x:string]: number }; var y = { ...x }; y.a = 0; // should be ok. ```