arguments-fn-strict-list-final-init-strict.js (495B)
1 // |reftest| error:SyntaxError 2 'use strict'; 3 // Copyright (c) 2018 Mike Pennisi. All rights reserved. 4 // This code is governed by the BSD license found in the LICENSE file. 5 6 /*--- 7 es5id: 12.2.1-28-s 8 esid: sec-variable-statement 9 description: > 10 arguments as local var identifier assigned to throws SyntaxError 11 in strict mode within a function declaration 12 flags: [onlyStrict] 13 negative: 14 phase: parse 15 type: SyntaxError 16 ---*/ 17 18 $DONOTEVALUATE(); 19 20 function f() { 21 var a, arguments = 42; 22 }