15.3.2.1-11-7-s-strict.js (434B)
1 'use strict'; 2 // Copyright (c) 2012 Ecma International. All rights reserved. 3 // This code is governed by the BSD license found in the LICENSE file. 4 5 /*--- 6 es5id: 15.3.2.1-11-7-s 7 description: > 8 Function constructor call from strict code with formal parameter 9 named arguments does not throws SyntaxError if function body is 10 not strict mode 11 flags: [onlyStrict] 12 ---*/ 13 14 Function('arguments', 'return;'); 15 16 reportCompare(0, 0);