aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/chapter10/10.5/10.5-1gs.js
blob: 0f10a24d8884de6b407f6e22d73aefc0e01c913b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16


/**
 * @path chapter10/10.5/10.5-1gs.js
 * @description Strict Mode - arguments cannot be assigned to in a strict function
 * @onlyStrict
 * @negative EarlyErrorRePat
 */

"use strict";
throw NotEarlyError;

function f_10_5_1_gs(){
    arguments = 7;
}