view run/with_04.d @ 1330:f3f715978184

Georg Wrede <georg@iki.fi> 2007-01-07 mail:45A120F5.1050108@iki.fi
author thomask
date Sat, 13 Jan 2007 10:33:49 +0000
parents f87ba6507260
children
line wrap: on
line source

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

module dstress.run.with_04;

Child dummySuper;

int value=1;

class Parent{
	int value=2;
}

class Child : Parent{
	int value=3;
}

class GrandChild :  Child {
	int value=4;
	
	void test(){
		dummySuper=super;
		value=5;
		with(new Child()){
			assert(value==3);
			assert(super==dummySuper);
		}
	}	
}

int main(){
	GrandChild c = new GrandChild();
	c.test();
	return 0;
}