aboutsummaryrefslogtreecommitdiffstats
path: root/external/contributions/Microsoft/ietcLatest/TestCases/ch11/11.13/11.13.1/11.13.1-4-28gs.js
blob: fdc0e1940035d9ca7e95cce6cb9aa08c3a2646c0 (plain)
1
2
3
4
5
6
7
8
9
/**
 * @path ch11/11.13/11.13.1/11.13.1-4-28gs.js
 * @description Strict Mode - SyntaxError is thrown if the identifier 'Math.PI' appears as the LeftHandSideExpression of simple assignment(=)
 * @onlyStrict
 * @negative NotEarlyError
 */
"use strict";
throw NotEarlyError;
Math.PI = 20;