view run/t/try_10_A.d @ 1519:f71bd33bb278

updated to DMD-1.013
author thomask
date Fri, 27 Apr 2007 17:22:49 +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;
}