unison/unison-src/tests/868.u
2021-08-24 11:33:27 -07:00

9 lines
198 B
Plaintext

structural type Choice = First | Second
structural type Wrapper = Wrapper Choice
broken = match Wrapper.Wrapper Choice.Second with
Wrapper.Wrapper Choice.First -> true
_ -> false
> broken