blob: a1d120bf7e42d3896c65191f3013a4145851deb1 [file] [log] [blame]
class Foo {
#foo;
constructor() {
this.#foo /= 1;
}
}
for (let i = 0; i < 10000000; ++i)
new Foo();