Sign in
webkit
/
WebKit
/
031545c904ac108f0063861f58a3e4e2a299b0c0
/
.
/
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"
);