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: * Block within a "do-while" Expression is not allowed michael@0: * michael@0: * @path ch12/12.6/12.6.1/S12.6.1_A15.js michael@0: * @description Using "{0}" Block as an Expression michael@0: * @negative michael@0: */ michael@0: michael@0: ////////////////////////////////////////////////////////////////////////////// michael@0: //CHECK# michael@0: do{ michael@0: ; michael@0: }while({0}); michael@0: // michael@0: ////////////////////////////////////////////////////////////////////////////// michael@0: