view run/in_out_body_07.d @ 275:62ebf330f1be

InException and OutException Anders F Bj?rklund <afb@algonet.se> 2005-02-06 news:cu5eci$1asg$1@digitaldaemon.com
author thomask
date Mon, 07 Feb 2005 12:41:48 +0000
parents
children 1e6afb94ce6d
line wrap: on
line source

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

// @author@	Anders F Björklund <afb@algonet.se>
// @date@	2005-02-06
// @uri@	news:cu5eci$1asg$1@digitaldaemon.com

module dstress.run.in_out_body_07;

void test()
out{
	assert(0);
}
body{
}

int main(){
	try{
		test();
	}catch{
		return 0;
	}
	assert(0);
}