aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/chapter11/11.4/11.4.5/11.4.5-2-2gs.js
blob: 172312108a2facca7fde490b479b312ab4993db8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12


/**
 * @path chapter11/11.4/11.4.5/11.4.5-2-2gs.js
 * @description Strict Mode - SyntaxError is throw if the UnaryExpression operated upon by a Prefix Increment operator(--arguments)
 * @onlyStrict
 * @negative NotEarlyError
 */

"use strict";
throw NotEarlyError;
--arguments;