Sign in
webkit
/
WebKit
/
8c551616acce2c42251182c7abaffe8c5bfc0fe5
/
.
/
JSTests
/
es6
/
miscellaneous_subclassables_Boolean_is_subclassable.js
blob: 2fcfdaf0cb50840688230da353b65a87d0b9a407 [
file
] [
log
] [
blame
]
function
test
()
{
class
C extends
Boolean
{}
var
c
=
new
C
(
true
);
return
c instanceof
Boolean
&&
c
==
true
;
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);