view run/auto_07.d @ 1489:b8c0195059d9

changed nntp: URLs to http: URLs
author thomask
date Mon, 09 Apr 2007 13:47:01 +0000
parents c67acdbaf88e
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_07;

int status;

auto class Parent{
}

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

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

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

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

	assert(0);
}