mirror of
https://github.com/tc39/test262.git
synced 2025-10-03 15:08:48 +02:00
13 lines
305 B
JavaScript
13 lines
305 B
JavaScript
|
|
|
|
/**
|
|
* @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; };
|