diff test/switch1.d @ 14:0e86428ee567 trunk

[svn r18] * Initial support for switch statements - No string switches yet. * Moved Statement::toIR definitions into gen/statements.c - toir.c is still too big. * Removed some BB bloat with ScopeStatements.
author lindquist
date Wed, 03 Oct 2007 02:15:12 +0200
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test/switch1.d	Wed Oct 03 02:15:12 2007 +0200
@@ -0,0 +1,15 @@
+module switch1;
+
+void main()
+{
+    int i = 2;
+    int r;
+    switch (i)
+    {
+    case 1: r+=1; break;
+    case 2: r-=2;
+    case 3: r=3; break;
+    default: r=-1;
+    }
+    assert(r == 3);
+}