view run/t/this_11_B.d @ 1609:3c803614a8fb

Add a few missing abstracts.
author Christian Kamm <kamm incasoftware de>
date Sun, 26 Apr 2009 13:38:23 +0200
parents c2931e457792
children
line wrap: on
line source

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

module dstress.run.t.this_11_B;

int status;

class A{
	this(){
		if(status != 1){
			assert(0);
		}
		status++;
	}
}

class B : A{
}

class C : B{
	this(){
		if(status != 2){
			assert(0);
		}
		status++;
	}
}

int main(){
	status = 1;

	C c = new C();

	if(status != 3){
		assert(0);
	}
	
	return 0;
}