aboutsummaryrefslogtreecommitdiff
path: root/test/enums.tm
diff options
context:
space:
mode:
Diffstat (limited to 'test/enums.tm')
-rw-r--r--test/enums.tm2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/enums.tm b/test/enums.tm
index 1b02686d..aea18948 100644
--- a/test/enums.tm
+++ b/test/enums.tm
@@ -1,7 +1,7 @@
enum Foo(Zero, One(x:Int), Two(x,y:Int))
>> Foo.Zero
-= Foo.Zero()
+= Foo.Zero
>> Foo.One(123)
= Foo.One(x=123)
>> Foo.Two(123, 456)