added test for empty case
[swftools.git] / lib / as3 / ok / switch.as
index 10954c7..0d83e82 100644 (file)
@@ -21,6 +21,10 @@ package {
             switch(1) {
                 case 2: trace("error");break;
             }
+            
+            switch(1) {
+                case 10:
+            }
         }
     }
 }