```ts type T = { a? : number, b: string }; var y: T; var x: Readonly<T> = y; // Error: Property 'a' is optional ```