diff tests/mini/tryfinally1.d @ 650:aa6a0b7968f7

Added test case for bug #100 Removed dubious check for not emitting static private global in other modules without access. This should be handled properly somewhere else, it's causing unresolved global errors for stuff that should work (in MiniD)
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Sun, 05 Oct 2008 17:28:15 +0200
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/mini/tryfinally1.d	Sun Oct 05 17:28:15 2008 +0200
@@ -0,0 +1,10 @@
+void main()
+{
+    try
+    {
+    }
+    finally
+    {
+        debug {} // the debug statement body can be anything
+    }
+}