unison/unison-src/tests/r1.u
2018-08-07 13:25:05 -04:00

7 lines
90 B
Plaintext

--r1
type Optional a = None | Some a
r1 : UInt64
r1 = case Optional.Some 3 of
x -> 1
()