Sign in
webkit
/
WebKit
/
10627ba484528fed3e7358b1801250bb004c8a99
/
.
/
JSTests
/
es6
/
Array_is_subclassable_Array.from.js
blob: 3a98548e8c28b50c75bbbe801b5182eafb3f4601 [
file
] [
log
] [
blame
]
function
test
()
{
class
C extends
Array
{}
return
C
.
from
({
length
:
0
})
instanceof C
;
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);