Sign in
webkit
/
WebKit
/
9a43d7e8bb9093ccc493831ef3377ee933abb11e
/
.
/
JSTests
/
stress
/
suppress-TerminationException-in-JSFunction-prototypeForConstruction.js
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
();