view run/auto_08.d @ 1536:89775df1607d

vtable can't be used as a template parameter
author thomask
date Mon, 07 May 2007 05:20:25 +0000
parents b8c0195059d9
children ec5e144583ea
line wrap: on
line source

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

// @author@	Sean Kelly <sean@f4.ca>
// @date@	2005-04-14
// @uri@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=3645

module dstress.run.auto_08;

int status;

auto class Parent{
}

auto class Child : Parent{
	this(){
		assert(status==0);
		status=1;
	}    

	~this(){
		assert(status==1);
		status=2;
	}
}

void test(){
	auto Child o = new Child();
	assert(status==1);
}

int main(){
	test();
	
	if(status==2){
		return 0;
	}
	assert(0);
}