mirror of https://github.com/tc39/test262.git
10 lines
224 B
JavaScript
10 lines
224 B
JavaScript
|
// 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);
|