Add case statement codegen and singleton ADTs
[scheme.git] / tests.scm
index 7185032945aab633c43d3fcf0b0f1c24d55d0eb9..0c11e89714b89d309cae775cc7f47d3d800e752f 100644 (file)
--- a/tests.scm
+++ b/tests.scm
 (test-prog '((data Foo [a] [b] [c])
             (let ([x b])
               (case x
-                [a b]
-                [b a]
-                [c x])))
+                [a 3]
+                [b 2]
+                [c 1])))
           2)