summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/statements/for-of/head-lhs-async-invalid.js
blob: 3d8d10bec5f0d7ab718eb94baed62f5edb8f9586 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// |reftest| error:SyntaxError
// Copyright (C) 2021 Kevin Gibbons. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
description: leading `async` token in for-of LHS
info: |
  The `async` token is disallowed in the LHS when followed by `of`
esid: sec-for-in-and-for-of-statements
negative:
  phase: parse
  type: SyntaxError
---*/

$DONOTEVALUATE();

var async;
for (async of [1]) ;