summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/statements/if/empty-statement.js
blob: eb58e5ffe37f902ddbe7bb7462ba61d4e063aa90 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Copyright 2019 Mike Pennisi.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
description: In the "if" statement empty statement is allowed.
es5id: 12.5_A7
---*/

if(1);

reportCompare(0, 0);