aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/chapter13/13.0/13_4-5gs.js
blob: 0516cb37eb65540ea2e5c0194c3a1532d039923a (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 EarlyErrorRePat
 */

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