view run/i/in_out_body_10_A.d @ 1489:b8c0195059d9

changed nntp: URLs to http: URLs
author thomask
date Mon, 09 Apr 2007 13:47:01 +0000
parents 9dcac8d4e97f
children
line wrap: on
line source

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

// @author@	Stewart Gordon <smjg_1998@yahoo.com>
// @date@	2005-12-12
// @uri@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=5835

// __DSTRESS_TORTURE_BLOCK__ -release

module dstress.run.i.in_out_body_10_A;

int a;
int b;

class Base {
	int func()
	out (result) {
		a++;
	}
	body {
		return 13;
	}
}

class Derived : Base {
	override int func()
	out (result) {
		b++;
	}
	body {
		return 17;
	}
}

int main() {
	Base base = new Base();

	assert(a == 0);
	assert(b == 0);

	assert(base.func() == 13);

	assert(a == 1);
	assert(b == 0);

	Derived derived = new Derived();

	assert(derived.func() == 17);

	assert(a == 2);
	assert(b == 1);

	return 0;
}