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