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

/*---
description: for statement beginning with `async of`
info: |
  `for (async of =>` is the begining of a regular for loop, rather than a for-of
esid: sec-for-statement
---*/

var i = 0;
var counter = 0;
for (async of => {}; i < 10; ++i) {
  ++counter;
}
assert.sameValue(counter, 10);

reportCompare(0, 0);