changeset 1158:dadbd7f099b7

[Issue 315] Exception handling is broken for delegates on Linux <shro8822@uidaho.edu> 2006-09-25 news:ef91dr$bda$1@digitaldaemon.com
author thomask
date Fri, 29 Sep 2006 08:10:57 +0000
parents 51ea3725bfa8
children aeb3e001a812
files run/s/scope_15_A.d
diffstat 1 files changed, 31 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/s/scope_15_A.d	Fri Sep 29 08:10:57 2006 +0000
@@ -0,0 +1,31 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	<shro8822@uidaho.edu>
+// @date@	2006-09-25
+// @uri@	news:ef91dr$bda$1@digitaldaemon.com
+// @desc@	[Issue 315] Exception handling is broken for delegates on Linux
+
+module dstress.run.s.scope_15_A;
+
+int status;
+
+void foo(){
+	{
+		scope(exit) status += 1;
+	}
+
+	scope(exit) status *= 10;
+}
+
+int main(){
+	status = 2;
+	foo();
+
+	if(status != 30){
+		assert(0);
+	}
+
+	return 0;
+}