mirror of https://github.com/tc39/test262.git
12 lines
380 B
JavaScript
12 lines
380 B
JavaScript
|
|
|
|
/**
|
|
* @path chapter15/15.3/15.3.2/15.3.2.1/15.3.2.1-10-6gs.js
|
|
* @description Strict Mode - SyntaxError is thrown if a function using the Function constructor has two identical parameters in (local) strict mode
|
|
* @onlyStrict
|
|
* @negative NotEarlyError
|
|
*/
|
|
|
|
throw NotEarlyError;
|
|
var _15_3_2_1_10_6_fun = new Function('param_1', 'param_2', 'param_1', '"use strict";return 0;');
|