test262/test/language/statements/if/S12.5_A8.js

18 lines
494 B
JavaScript
Raw Normal View History

// 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
2014-07-25 00:41:42 +02:00
es5id: 12.5_A8
description: Checking if execution of "if()" fails
negative:
phase: early
type: SyntaxError
---*/
//////////////////////////////////////////////////////////////////////////////
//CHECK#1
if();
//
//////////////////////////////////////////////////////////////////////////////