Add a test for optionals to ensure they size correctly

This commit is contained in:
Bruce Hill 2024-10-08 13:39:45 -04:00
parent 954ed42934
commit 5103fde1c5

View File

@ -321,3 +321,6 @@ func main():
>> not !Int
= yes
>> [Struct(5,"A")?, Struct(6,"B"), Struct(7,"C")]
= [Struct(x=5, y="A")?, Struct(x=6, y="B")?, Struct(x=7, y="C")?]