aboutsummaryrefslogtreecommitdiffstats
path: root/external/contributions/Microsoft/ietcLatest/TestCases/ch13/13.1/13.1-5gs.js
blob: e91fe3970f1e28d5e91cd322aa26a1d1cdec3562 (plain)
1
2
3
4
5
6
7
8
9
/**
 * @path ch13/13.1/13.1-5gs.js
 * @description Strict Mode - SyntaxError is thrown if a FunctionDeclaration has two identical parameters
 * @onlyStrict
 * @negative ^((?!NotEarlyError).)*$
 */
"use strict";
throw NotEarlyError;
function _13_1_5_fun(param, param) { }