unison/unison-src/tests/868.u
2020-02-07 18:59:37 -08:00

9 lines
176 B
Plaintext

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