Sign in
webkit
/
WebKit
/
5969b6f1f74632b1546edb27bd956b187c2c3d52
/
.
/
JSTests
/
es6
/
Set_constructor_accepts_null.js
blob: 96039f47477ab6e33e56574081b1f7f71865e85d [
file
] [
log
] [
blame
]
function
test
()
{
new
Set
(
null
);
return
true
;
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);