view run/invariant_14.d @ 70:5f98d4a33d49

1) review of all test cases with unexpected results (except encoding and html/xml) 2) updated todo
author thomask
date Sat, 23 Oct 2004 22:47:47 +0000
parents 96cadd0da1ae
children a33ad7189d21
line wrap: on
line source

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

module dstress.run.invariant_14.d;

class Parent{

	int x;

	this(){
		x=3;
	}
	
	invariant{
		assert(x>2);
	}
}

class Child : Parent{
}

class GrandChild : Child{

	this(){
		x=5;
	}

	invariant{
		assert(x>4);
	}
}

int main(){
	GrandChild gc = new GrandChild();
	return 0;
}