Update test

This commit is contained in:
Bruce Hill 2024-03-17 21:48:53 -04:00
parent 03b223ac51
commit 47f627f5dd

View File

@ -25,3 +25,10 @@ enum Foo(Zero, One(x:Int), Two(x,y:Int))
= "found"
>> t[Foo.Zero()]
= "missing"
when x is o:One
>> o.x
= 123
else
fail("Oops")