view run/t/try_10_A.d @ 686:fee0a5e50d6e

64bit gdc frontent issues
author thomask
date Mon, 26 Sep 2005 14:49:49 +0000
parents
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;
}