Sign in
webkit
/
WebKit
/
d5bc8626ff9394ad3cac4aff99be89e91a8d2265
/
.
/
JSTests
/
es6
/
Function_is_subclassable_can_be_called.js
blob: d662d77cb7c22a217afeaae7cd70049b996d8637 [
file
] [
log
] [
blame
]
function
test
()
{
class
C extends
Function
{}
var
c
=
new
C
(
"return 'foo';"
);
return
c
()
===
'foo'
;
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);