view run/invariant_25.d @ 1559:ec5e144583ea

D1 -> D2 : 1/N
author thomask
date Sun, 19 Aug 2007 19:11:54 +0000
parents b8c0195059d9
children
line wrap: on
line source

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

// @author@	Thomas Kuehne <thomas-dloop@kuehne.THISISSPAM.cn>
// @date@	2005-02-06
// @uri@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=2878

// __DSTRESS_TORTURE_BLOCK__ -release

module dstress.run.invariant_25;

version(Tango){
	import tango.core.Exception : AE = AssertException;
}else{
	import std.asserterror :  AE = AssertError;
}

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

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