blob: 3ace7708c10dedf5ad1708326b375d2af3e95437 [file] [log] [blame]
//@ runDefault("--watchdog=100", "--watchdog-exception-ok")
class Foo {
#x;
constructor() {
gc();
try {
Object.#x();
} catch (e) {
}
}
}
while(1) {
new Foo();
}