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