summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/expressions/call/trailing-comma.js
blob: 17ef0b1e465b33158a0b2b0a20365734f619a74d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (C) 2016 Jeff Morrison. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: >
  Check that trailing commas are permitted after spread arguments
  in a call expression.
info: http://jeffmo.github.io/es-trailing-function-commas/
author: Jeff Morrison <lbljeffmo@gmail.com>
---*/

function foo() {}
foo(...[],);

reportCompare(0, 0);