view run/auto_01.d @ 1597:8b9d4d2f925a

Fix typos in complex tests. See D bug 614.
author Christian Kamm <kamm incasoftware de>
date Tue, 09 Sep 2008 16:53:58 +0200
parents 6e4063f99377
children
line wrap: on
line source

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

// @author@	Sean Kelly <sean@f4.ca>
// @date@	2004-09-11
// @uri@	news:chtj6t$24bm$1@digitaldaemon.com
// @uri@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=1821

module dstress.run.auto_01;

auto class AutoClass{
	this(){
		throw new Exception("error msg");
	}
	~this(){
		throw new Exception("should never throw");
	}
}

int main(){
	try{
		auto AutoClass ac = new AutoClass();
	}catch{
		return 0;
	}
	assert(0);
}