15.3.2.1-11-4-s-strict.js (426B)
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-4-s 7 description: > 8 Function constructor call from strict code with formal parameter 9 named 'eval' does not throws SyntaxError if function body is not 10 strict mode 11 flags: [onlyStrict] 12 ---*/ 13 14 Function('eval', 'return;'); 15 16 reportCompare(0, 0);