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