view run/a/abstract_16_A.d @ 1592:276327753cc7

Fix typo in run/a/asm_lea_03.
author Christian Kamm <kamm incasoftware de>
date Thu, 28 Aug 2008 10:12:53 +0200
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;
	}
}