feat: inject unreachable! after break-less repeat#13506
Merged
Conversation
b388a6f to
e92af04
Compare
|
Mathlib CI status (docs):
|
Collaborator
|
Reference manual CI status:
|
e92af04 to
c7fc1cb
Compare
…-code warnings When a `repeat` body has no `break`, the loop does not terminate normally and the `ForIn.forIn` result type is fixed to `PUnit`. Using such a `repeat` in a do block that expects a non-`Unit` result type used to require a trailing `return`/`unreachable!` from the user. To make matters worse, that trailing element was flagged as dead by the `ControlInfo`-based warning, yet removing it broke the do block's type, so the warning was not actionable and had to be suppressed. This PR teaches `elabDoRepeat` to append its own `unreachable!` after the `for _ in Loop.mk do ...` expansion when the body cannot `break`. The `unreachable!` gives the continuation a polymorphic value, so the enclosing do block's result type is inferred from context and the user no longer needs to write any trailing filler. The `ControlInfo` for break-less `repeat` now reports `noFallthrough` (and `numRegularExits := 0`) honestly, so dead-code warnings fire on any user-written element after the loop — and because the loop supplies its own `unreachable!`, those warnings are actionable: the user can simply delete the flagged element. Co-authored-by: Rob23oba <robin.arnez@web.de>
c7fc1cb to
3365536
Compare
pull Bot
pushed a commit
to justinlietz93/lean4
that referenced
this pull request
Jun 1, 2026
This PR makes the new `do` elaborator (leanprover#12459) the default by flipping `backward.do.legacy` to `false`. Legacy behavior remains available via `set_option backward.do.legacy true`. New surface syntax that is now accepted (and may shadow user-defined macros of the same shape): * `while let pat := e do …`, `while let pat ← e do …`, and `while h : cond do …` via a unified condition syntax (leanprover#13534). * `let ⟨a, b⟩ : T ← act` propagates the type annotation to the monadic action (leanprover#12866). * `letConfig` options (`(eq := h)`, `+nondep`, `+usedOnly`, `+zeta`) on do `let`/`have` (leanprover#13250, leanprover#13255). They are rejected on `let mut`, and `+postponeValue`/`+generalize` are rejected outright. * Anonymous dependent `if _ : p then … else …` now elaborates inside `do` blocks (leanprover#13192). Breaking changes: * `do` notation now requires a `Pure` instance, not just `Bind`. * The arms of `do match` are non-dependent by default; write `do match (dependent := true)` to recover the legacy term-match expansion. The patterns are still dependently refined (leanprover#12673), which subsumes many former dependent uses. * `try`/`catch` no longer accepts a body whose result type matches the surrounding expected type only via coercion (leanprover#13849). The same expression has never been accepted outside `do`. * Unreachable code now triggers a warning instead of an error. Code written after a `break`-less `repeat` is now reported as unreachable (leanprover#13506). * The syntax for `let pat := rhs | otherwise` and similar now scope over the `doSeq` that follows. Furthermore, `otherwise` and the sequence that follows are now `doSeqIndented` in order not to steal syntax from record syntax.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR appends
unreachable!to the expansion ofbreak-lessrepeatwhen the expected result type does not unify withPUnit. The continuation then has a polymorphic value, so the enclosing do block's result type is inferred without a user-written filler, andControlInfofor break-lessrepeatcan reportnoFallthroughhonestly — dead-code warnings on subsequent elements are now actionable.