view run/invariant_24.d @ 736:1e6afb94ce6d

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

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

// @author@	Thomas Kuehne <thomas-dloop@kuehne.THISISSPAM.cn>
// @date@	2005-02-06
// @uri@	news:vlbhd2-1n2.ln1@lnews.kuehne.cn

// __DSTRESS_TORTURE_BLOCK__ -release

module dstress.run.invariant_24;

class MyClass{

	this(){
	}

	invariant{
		assert(0);
	}
}

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