view run/invariant_18.d @ 736:1e6afb94ce6d

updated meta data for Torture
author thomask
date Sat, 12 Nov 2005 07:28:46 +0000
parents 4cd33115f015
children 52c9e86b6486
line wrap: on
line source

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

// @author@	Thomas Kuehne <thomas-dloop@kuehne.thisisspam.cn>
// @date@	2004-10-23
// @uri@	news:cldaue$2gf4$1@digitaldaemon.com
// @url@	nntp://digitalmars.com/digitalmars.D.bugs/2144

// __DSTRESS_TORTURE_BLOCK__ -release

module dstress.run.invariant_18;

class MyClass{
	invariant{
		assert(0);
	}
}

int main(){
	try{
		MyClass c = new MyClass();
	}catch{
		return 0;
	}
	assert(0);
}