view run/bug_tocsym_217_03.d @ 1489:b8c0195059d9

changed nntp: URLs to http: URLs
author thomask
date Mon, 09 Apr 2007 13:47:01 +0000
parents 9d15bae5fb5e
children
line wrap: on
line source

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

// @author@	Nick <Nick_member@pathlink.com>
// @date@	2005-04-08
// @uri@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=3567

module dstress.run.bug_tocsym_217_03;

class A{
	~this(){
	}
}

int main(){
	A a = new A();

	try{
	}catch(Exception e){ 
		try{
			assert(e);
		}catch{
		}
	}
	
	return 0;
}