view run/in_out_body_05.d @ 736:1e6afb94ce6d

updated meta data for Torture
author thomask
date Sat, 12 Nov 2005 07:28:46 +0000
parents 62ebf330f1be
children b8c0195059d9
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

// __DSTRESS_TORTURE_BLOCK__ -release

module dstress.run.in_out_body_05;

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

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