Bend/tests/golden_tests/desugar_file/ask_branch.bend
2024-08-01 09:57:02 -03:00

13 lines
162 B
Plaintext

type Bool:
T
F
def main:
with IO:
match _ = Bool/T:
case Bool/T:
x <- wrap(0)
case Bool/F:
x <- wrap(0)
return wrap(x)