diff tests/code/switch_6.d @ 150:6c5a3c0bb4fb

Make switch work again Also added locations to statements (only filled out for switch) Added a verification pass Removed some comments
author Anders Halager <halager@gmail.com>
date Mon, 21 Jul 2008 20:35:03 +0200
parents a49bb982a7b0
children
line wrap: on
line diff
--- a/tests/code/switch_6.d	Mon Jul 21 19:17:56 2008 +0200
+++ b/tests/code/switch_6.d	Mon Jul 21 20:35:03 2008 +0200
@@ -7,6 +7,8 @@
             return 0;
         case 2, 3:
             return 1;
+        case 1, 3:
+            return 1;
     }
 }