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