summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/statements/function/param-arguments-non-strict.js
blob: a2560e4ddce8e9b84173418faa1748862a4a1b9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (c) 2012 Ecma International.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
es5id: 13.1-2-5
description: >
    arguments allowed as formal parameter name of a non-strict
    function declaration
flags: [noStrict]
---*/

function foo(arguments){}

reportCompare(0, 0);