```ts interface Weak { a?: any, b?: any, } let x: Weak = 10; ``` Expected: Error on assigning `10` to `x`. Actual: No error.