view compile/s/scope_07_B.d @ 1619:bebc7472a832

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

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

module dstress.compile.s.scope_07_B;

void main(){
	scope(failure) throw new Exception("msg 1");
	scope(failure) throw new Exception("msg 2");
	throw new Exception("msg 0");
}