aboutsummaryrefslogtreecommitdiff
path: root/test/enums.tm
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-03-17 22:17:21 -0400
committerBruce Hill <bruce@bruce-hill.com>2024-03-17 22:17:21 -0400
commit5f3dac786c6b27f04d5cf7f27ea994135d26041e (patch)
treef47f27045a838494bcbbeaf9694cc4e03165d31a /test/enums.tm
parent0f70411cbf6548febfc0f664db72a246a92d4225 (diff)
Clean up codegen for empty tagged data
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)