view run/b/bug_stmt_2384_D.d @ 1619:bebc7472a832

Fix #7.
author Christian Kamm <kamm incasoftware de>
date Sat, 07 Nov 2009 18:55:30 +0100
parents 62c9b99c3a16
children
line wrap: on
line source

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

// @author@	Thomas Kuehne <thomas-dloop@kuehne.cn>
// @uri@	news:rom273-05q.ln1@birke.kuehne.cn

module dstress.run.b.bug_stmt_2384_D;

void outer(){
	void inner(){
		throw new Exception("msg");
	}
}

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