mirror of
https://github.com/tc39/test262.git
synced 2025-10-03 06:58:42 +02:00
13 lines
311 B
JavaScript
13 lines
311 B
JavaScript
|
|
|
|
/**
|
|
* @path chapter13/13.0/13_4-17gs.js
|
|
* @description Strict Mode - SourceElements is evaluated as strict mode code when a Function constructor is contained in strict mode code
|
|
* @onlyStrict
|
|
* @negative NotEarlyError
|
|
*/
|
|
|
|
"use strict";
|
|
var _13_4_17_fun = new Function('eval = 42;');
|
|
throw NotEarlyError;
|