Sign in
webkit
/
WebKit
/
6fd57f0545e2ab789319dc828ca2e5959d39c256
/
.
/
JSTests
/
es6
/
Array_is_subclassable_Array.of.js
blob: 86692b2a0d8b039e390619780bf6f17f09a1f90c [
file
] [
log
] [
blame
]
function
test
()
{
class
C extends
Array
{}
return
C
.
of
(
0
)
instanceof C
;
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);