view run/t/try_10_A.d @ 1535:20d8ee6523e1

updated to DMD-1.013
author thomask
date Mon, 07 May 2007 05:19:57 +0000
parents fee0a5e50d6e
children
line wrap: on
line source

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

module dstress.run.t.try_10_A;

void foo(){
	try{
		if(0){
			void bar(int d){
				assert(0);
			}
			bar(0);
		}
	}finally{
	}
}

int main(){
	foo();
	return 0;
}