view run/invariant_25.d @ 1622:d402aa53926c

Add test for bug 3092 written by Manuel K?nig
author Leandro Lucarella <llucax@gmail.com>
date Tue, 19 Oct 2010 19:18:23 -0300
parents ec5e144583ea
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);
}