blob: 18b046aee7a9d8543d91c56cef9f08e8675eb2ab [file] [log] [blame]
//@ runDefault("--watchdog=300", "--watchdog-exception-ok")
class U {}
function foo() {
class C extends U {
constructor() {
gc();
super();
}
}
new C();
}
while(1) foo();