Sign in
webkit
/
WebKit
/
46d9b33751f12edb2927fb16fa311fe25b518726
/
.
/
JSTests
/
es6
/
class_extends.js
blob: 2b5ff4e7e6c5cc56e7d3694810d5313056231a83 [
file
] [
log
] [
blame
]
function
test
()
{
class
B
{}
class
C extends B
{}
return
new
C
()
instanceof B
&&
B
.
isPrototypeOf
(
C
);
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);