test262/test/suite/ch12/12.5/S12.5_A8.js

15 lines
452 B
JavaScript

// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
info: In the "if" Statement empty expression is not allowed
description: Checking if execution of "if()" fails
flags: [negative]
---*/
//////////////////////////////////////////////////////////////////////////////
//CHECK#1
if();
//
//////////////////////////////////////////////////////////////////////////////