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