blob: 9ae3ad7638deda1ed0811edf3eb072a363c26b18 [file] [log] [blame]
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/**
* FunctionExpression within a "do-while" Expression is allowed
*
* @path ch12/12.6/12.6.1/S12.6.1_A14_T2.js
* @description Using FunctionExpression "function __func(){return 0;}()" as an Expression
*/
//////////////////////////////////////////////////////////////////////////////
//CHECK#
do{
var __reached = 1;
break;
}while(function __func(){return 0;}());
//
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//CHECK#2
if (__reached !== 1) {
$ERROR('#2: function expession inside of do-while expression is allowed');
}
//
//////////////////////////////////////////////////////////////////////////////