summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/statements/for-in/var-arguments-fn-strict-init-strict.js
blob: 2fa07fc2333a7ff288ce806ca41bf3d5529e20f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// |reftest| error:SyntaxError
'use strict';
// Copyright (c) 2018 Mike Pennisi.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-for-statement
description: >
    'for(var arguments = 42 in ...) {...}' throws SyntaxError in
    strict mode within a function declaration
flags: [onlyStrict]
negative:
  phase: parse
  type: SyntaxError
---*/

$DONOTEVALUATE();

function f() {
  for (var arguments = 42 in null) {}
}