view run/a/abstract_16_A.d @ 1621:8f6d65d2b129

Fix #4.
author Christian Kamm <kamm incasoftware de>
date Sat, 07 Nov 2009 19:06:53 +0100
parents 45d6f72f4d18
children
line wrap: on
line source

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

module dstress.run.a.abstract_16_A;

class A{
	int test(){
		return 1;
	}
}

class B : A{
	abstract override int test();
}

class C : B{
	override int test(){
		return 2;
	}
}

int main(){
	C c = new C();

	if(c.test() != 2){
		assert(0);
	}

	B b = c;

	if(b.test() != 2){
		assert(0);
	}

	A a = b;

	if(a.test() == 2){
		return 0;
	}
}