lean4-htt/tests/lean/run/issue8098.lean
Joachim Breitner f9d191d7b8
fix: allow ascii <- in if let clauses (#8102)
This PR allows ASCII `<-` in `if let` clauses, for consistency with
bind, where both are allowed. Fixes #8098.
2025-04-27 13:17:58 +00:00

4 lines
105 B
Text

example : Id Unit := do
if let true ← true then pure ()
if let true <- true then pure ()
pure ()