aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/chapter13/13.0/13_4-5gs.js
blob: d4d2cbd2a29e41c21fa4c700be87e249248f30d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12


/**
 * @path chapter13/13.0/13_4-5gs.js
 * @description Strict Mode - SourceElements is evaluated as strict mode code when a FunctionDeclaration is contained in strict mode code
 * @onlyStrict
 * @negative NotEarlyError
 */

"use strict";
throw NotEarlyError;
function _13_0_4_5_fun() { eval = 42; };