arguments-fn-non-strict.js (355B)
1 // Copyright (c) 2018 Mike Pennisi. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 es5id: 12.2.1-12 6 esid: sec-variable-statement 7 description: > 8 arguments as local var identifier is allowed within a function declaration 9 flags: [noStrict] 10 ---*/ 11 12 function f() { 13 var arguments; 14 } 15 16 reportCompare(0, 0);