summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/statements/for/head-init-expr-check-empty-inc-empty-syntax.js
blob: 6297aaab7f7feaaeeb57c95591a3cc8dda5e045c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright 2019 Mike Pennisi.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
description: For head may omit optional expressions
es5id: 12.6.3_A9.1
---*/


var supreme = 5
var count;

for(count=0;;) {if (count===supreme)break;else count++; }

reportCompare(0, 0);