changeset 686:fee0a5e50d6e

64bit gdc frontent issues
author thomask
date Mon, 26 Sep 2005 14:49:49 +0000
parents 4f97e51515d8
children 59db9e5e7781
files run/t/try_10_A.d run/t/try_10_B.d run/t/try_10_C.d
diffstat 3 files changed, 67 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/t/try_10_A.d	Mon Sep 26 14:49:49 2005 +0000
@@ -0,0 +1,22 @@
+// $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;
+}
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/t/try_10_B.d	Mon Sep 26 14:49:49 2005 +0000
@@ -0,0 +1,23 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+module dstress.run.t.try_10_B;
+
+void foo(){
+	try{
+		if(0){
+			void bar(int d){
+				assert(0);
+			}
+			bar(0);
+		}
+	}catch{
+	}finally{
+	}
+}
+
+int main(){
+	foo();
+	return 0;
+}
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/t/try_10_C.d	Mon Sep 26 14:49:49 2005 +0000
@@ -0,0 +1,22 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+module dstress.run.t.try_10_C;
+
+void foo(){
+	try{
+		if(0){
+			void bar(int d){
+				assert(0);
+			}
+			bar(0);
+		}
+	}catch{
+	}
+}
+
+int main(){
+	foo();
+	return 0;
+}
\ No newline at end of file