view run/bug_tocsym_217_04.d @ 411:9d15bae5fb5e

tocsym.c:217: virtual Symbol* VarDeclaration::toSymbol(): Assertion `0' failed. Nick <Nick_member@pathlink.com> 2005-04-08 news:d36gbn$31ic$1@digitaldaemon.com
author thomask
date Fri, 08 Apr 2005 19:07:41 +0000
parents
children b8c0195059d9
line wrap: on
line source

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

// @author@	Nick <Nick_member@pathlink.com>
// @date@	2005-04-08
// @uri@	news:d36gbn$31ic$1@digitaldaemon.com

module dstress.run.bug_tocsym_217_04;

class A{
	~this(){
	}
}

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

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