export.ts ```ts export class MyClass { static get foo() { return 42; } } ``` import.ts ```ts import { MyClass } from "./export"; MyClass.foo = 0; ``` Expected: Cannot assign to read-only property (Strada behavior) Actual: No error