summaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
authorKathy Gray2014-02-14 15:55:38 +0000
committerKathy Gray2014-02-14 15:55:38 +0000
commite63004599c19e8e741918c6e64ec0a5362abc8ed (patch)
treefebb92f46e3b83db9b4a96e36893d15660109de5 /src/test
parent65c30622a25d10eebec650284949c6c3270df5ac (diff)
Fix infinite loop bug, and test1.sail type checking bug
Diffstat (limited to 'src/test')
-rw-r--r--src/test/test1.sail2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/test1.sail b/src/test/test1.sail
index c27d1c77..34210f97 100644
--- a/src/test/test1.sail
+++ b/src/test/test1.sail
@@ -31,7 +31,7 @@ function clause f ( C (a) ) = C(a)
end ast
end f
-(*function unit a (bit) b = if b then () else ()*)
+function unit a (bit) b = if b then () else ()
function bit sw s = switch s { case 0 -> bitzero }