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

/*---
es5id: 13.1-39-s
description: >
    StrictMode - SyntaxError is thrown if 'arguments' occurs as the
    function name of a FunctionDeclaration in strict eval code
flags: [noStrict]
---*/


assert.throws(SyntaxError, function() {
            eval("'use strict'; function arguments() { };")
});

reportCompare(0, 0);