This PR allows ASCII `<-` in `if let` clauses, for consistency with bind, where both are allowed. Fixes #8098.
4 lines
105 B
Text
4 lines
105 B
Text
example : Id Unit := do
|
|
if let true ← true then pure ()
|
|
if let true <- true then pure ()
|
|
pure ()
|