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