Sign in
webkit
/
WebKit
/
fff5469af9e21121a01bc52b64d66a2e93b51665
/
.
/
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"
);