This works: ```js class C { static x = 42 static y = this.x } (globalThis.print??console.log)(C.y) // 42 ``` But this throws a `C is not initialized` ReferenceError: ```js class C { static x = 42 static y = C.x // ReferenceError (but not in V8) } ``` test262 has tests that exercise the former but not the latter (that I can find) so I'm not 100% sure it's actually a bug but both work in V8.