Sign in
webkit
/
WebKit
/
8cd365e9845661229ee06dd3fb968eec4fdfdc8a
/
.
/
JSTests
/
es6
/
class_extends_expressions.js
blob: 01b0523c1cf15ee41f5260496ff75def3c7af957 [
file
] [
log
] [
blame
]
function
test
()
{
var
B
;
class
C extends
(
B
=
class
{})
{}
return
new
C
()
instanceof B
&&
B
.
isPrototypeOf
(
C
);
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);