view nocompile/s/scope_11_I.d @ 1062:7360e428ad73

pre 0.162 review
author thomask
date Sat, 01 Jul 2006 23:08:00 +0000
parents
children
line wrap: on
line source

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

// __DSTRESS_ELINE__ 18

module dstress.nocompile.s.scope_11_I;

int main(){
	int i = 0;

label:
	while( i++ < 10){
		i++;
	}

	scope(success){
		break label;
	}

	return 1;
}