12.2.1-11.js (336B)
1 // Copyright (c) 2012 Ecma International. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 es5id: 12.2.1-11 6 description: arguments as var identifier in eval code is allowed 7 flags: [noStrict] 8 ---*/ 9 10 function testcase() { 11 eval("var arguments;"); 12 } 13 testcase(); 14 15 reportCompare(0, 0);