michael@0: // Copyright 2009 the Sputnik authors. All rights reserved. michael@0: // This code is governed by the BSD license found in the LICENSE file. michael@0: michael@0: /** michael@0: * Function expession inside the "if" expression is allowed michael@0: * michael@0: * @path ch12/12.5/S12.5_A10_T1.js michael@0: * @description Using function expession(function __func(){return 0;}) inside the "if" expression michael@0: */ michael@0: michael@0: ////////////////////////////////////////////////////////////////////////////// michael@0: //CHECK# michael@0: if(function __func(){return 0;}){ michael@0: ; michael@0: }else { michael@0: $ERROR('#1: Function expession inside the "if" expression is allowed'); michael@0: } michael@0: // michael@0: ////////////////////////////////////////////////////////////////////////////// michael@0: