view nocompile/invariant_17.d @ 1383:52c9e86b6486

@url@ -> @uri@
author thomask
date Sun, 04 Mar 2007 13:07:35 +0000
parents 0ea4c218a3ee
children 774e02c900da
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 may not call non-static public class member functions (stack overflow)

// __DSTRESS_TORTURE_BLOCK__ -release
// __DSTRESS_ELINE__ 26

module dstress.nocompile.invariant_17;

class MyClass{
	this(){
	}

	int test(){
		return 0;
	}

	invariant{
		assert(test()!=0);
	}
}

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