Sign in
webkit
/
WebKit
/
c99cf813c1a31e482b4fe16888297e577642938c
/
.
/
JSTests
/
es6
/
arrow_functions_1_parameter_no_brackets.js
blob: 7c3b372b47c68214a0db3a035efd0a760fb33fef [
file
] [
log
] [
blame
]
function
test
()
{
var
b
=
x
=>
x
+
"foo"
;
return
(
b
(
"fee fie foe "
)
===
"fee fie foe foo"
);
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);