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