summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/expressions/arrow-function/syntax/arrowparameters-cover-rest-concisebody-functionbody.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/language/expressions/arrow-function/syntax/arrowparameters-cover-rest-concisebody-functionbody.js')
-rw-r--r--js/src/tests/test262/language/expressions/arrow-function/syntax/arrowparameters-cover-rest-concisebody-functionbody.js20
1 files changed, 20 insertions, 0 deletions
diff --git a/js/src/tests/test262/language/expressions/arrow-function/syntax/arrowparameters-cover-rest-concisebody-functionbody.js b/js/src/tests/test262/language/expressions/arrow-function/syntax/arrowparameters-cover-rest-concisebody-functionbody.js
new file mode 100644
index 0000000000..3900da74e3
--- /dev/null
+++ b/js/src/tests/test262/language/expressions/arrow-function/syntax/arrowparameters-cover-rest-concisebody-functionbody.js
@@ -0,0 +1,20 @@
+// Copyright (C) 2015 the V8 project authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+/*---
+es6id: 14.2
+description: >
+ ArrowFunction[In, Yield] :
+ ArrowParameters[?Yield] [no LineTerminator here] => ConciseBody[?In]
+
+ LineTerminator between arrow and ConciseBody[?In]
+ ArrowParameters : CoverParenthesizedExpressionAndArrowParameterList[?Yield]
+ ConciseBody[In] : { FunctionBody }
+
+ Includes ...rest
+---*/
+var af = (...x) => { return x.length; };
+
+assert.sameValue(typeof af, "function");
+assert.sameValue(af(1, 1, 1), 3);
+
+reportCompare(0, 0);