roc/test/fx-open/test_simple_union.roc
2025-12-01 22:26:54 -05:00

8 lines
146 B
Text

# Simplest test: direct tags in if-else without Err wrapper
main : [TagA, TagB]
main =
if True {
TagA
} else {
TagB
}