view nocompile/b/break_11_A.d @ 629:9337dc166495

labeled breaks and labeled enclosing scopes BCS <BCS_member@pathlink.com> 2005-08-11 news:ddfsnp$eit$1@digitaldaemon.com
author thomask
date Sat, 13 Aug 2005 21:36:50 +0000
parents
children b8c0195059d9
line wrap: on
line source

// $HeadURL$
// $Date$
// $Author$

// @author@	BCS <BCS_member@pathlink.com>
// @date@	2005-08-11
// @uri@	news:ddfsnp$eit$1@digitaldaemon.com
// @desc@	labeled breaks and labeled enclosing scopes

// __DSTRESS_ELINE__ 17

module dstress.nocompile.b.break_11_A;

void main(){
	foo:{
		while(true){
			break foo;
		}
	}
}