view run/invariant_04.d @ 1383:52c9e86b6486

@url@ -> @uri@
author thomask
date Sun, 04 Mar 2007 13:07:35 +0000
parents 1e6afb94ce6d
children 6e4063f99377
line wrap: on
line source

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

// @author@	Thomas Kuehne <thomas-dloop@kuehne.thisisspam.cn>
// @date@	2004-10-22
// @uri@	news:clbr09$uc6$1@digitaldaemon.com
// @uri@	nntp://digitalmars.com/digitalmars.D.bugs/2140

// invariant for structs allowed since dmd-0.119

// __DSTRESS_TORTURE_BLOCK__ -release

module dstress.run.invariant_04;

bool tested;

struct MyStruct{
	int i=1;

	void test(){
	}

	invariant{
		assert(i==1);
		tested=true;
	}
}

int main(){
	MyStruct s;
	assert(!tested);
	s.test();
	assert(tested);
	return 0;
}