```js class A { constructor() { new.target.url; } } class B extends A { static get url() { console.log('url!'); } constructor() { super(); } } new B(); ``` [playground](https://playground.oxc.rs/?code=class+A+%7B%0A++constructor%28%29+%7B%0A++++new.target.url%3B%0A++%7D%0A%7D%0A%0Aclass+B+extends+A+%7B%0A++static+get+url%28%29+%7B%0A++++console.log%28%27url%21%27%29%3B%0A++%7D%0A%0A++constructor%28%29+%7B%0A++++super%28%29%3B%0A++%7D%0A%7D%0A%0Anew+B%28%29%3B%0A) Found while checking https://github.com/oxc-project/oxc/pull/19308. It was pointed out by Copilot (https://github.com/oxc-project/oxc/pull/19308#discussion_r2799548034).