aboutsummaryrefslogtreecommitdiffstats
path: root/test/language/rest-parameters/position-invalid.js
blob: bcb66f5a549aed29ef9d768cc7648734f188150e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright (C) 2014 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es6id: 14.1
description: >
    Rest parameter cannot be followed by another named parameter
negative:
  phase: parse
  type: SyntaxError
---*/

throw "Test262: This statement should not be evaluated.";
function f(a, ...b, c) {}