You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
adds side condition syntax only for case-expressions. For the sake of syntax uniformity, we should allow them anywhere pattern matching is allowed, e.g.,
f (lst : List Nat) : Nat
| [x]
| if F x := A
| if G x := B
| else := C
| _ := D;