Sign in
webkit
/
WebKit
/
1301b5dddcb28e452a3a8911596f68f5704bd0a8
/
.
/
JSTests
/
es6
/
arrow_functions_0_parameters.js
blob: 854024f12d81acecaa80400750f7015c51aec4a7 [
file
] [
log
] [
blame
]
function
test
()
{
return
(()
=>
5
)()
===
5
;
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);