blob: 4f63e1f478c0c6fe6a60ffcc1f339ab088671edb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
'use strict';
// Copyright (c) 2012 Ecma International. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es5id: 15.3.2.1-11-6-s
description: >
Duplicate combined parameter name allowed in Function constructor
called in strict mode if body not strict
flags: [onlyStrict]
---*/
Function('a,a', 'return a;');
reportCompare(0, 0);
|