class Foo extends class { static bar = 42; } { static bar = 21; static { this.foo = super.bar; } } expect(Foo.foo).toBe(42);