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


/**
 * @path chapter11/11.13/11.13.2/11.13.2-6-1gs.js
 * @description Strict Mode - SyntaxError is throw if the identifier eval appears as the LeftHandSideExpression of a Compound Assignment operator(*=)
 * @onlyStrict
 * @negative NotEarlyError
 */

"use strict";
throw NotEarlyError;
eval *= 20;