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