This PR stops the `repeat` inference handler from reporting `numRegularExits := 0` for break-less bodies. For break-less `repeat` the loop never terminates normally, so `0` looks more accurate semantically, but the loop expression still has type `m Unit` and the do block's continuation after the loop is what carries that type. Reporting `0` makes the elaborator flag that continuation as dead code, yet there is no way for the user to remove it that is also type correct — unless the enclosing do block's monadic result type happens to be `Unit`. Pinning `numRegularExits` at `1` (matching `for ... in`) eliminates those spurious warnings.
82 lines
2.5 KiB
Text
82 lines
2.5 KiB
Text
set_option backward.do.legacy false
|
|
|
|
-- When an inner doElem's `ControlInfo` has `numRegularExits := 0` (because all branches
|
|
-- `break`/`continue`/`return`, or it is a non-terminating `repeat`), the trailing `return`
|
|
-- inside the enclosing `for` body used to be dropped during inference, and the for elaborator
|
|
-- then threw "Early returning ... but the info said there is no early return" even though the
|
|
-- elaborator does visit the trailing element. `ofSeq`/`ControlInfo.sequence` now aggregate
|
|
-- `breaks`/`continues`/`returnsEarly`/`reassigns` past `numRegularExits == 0` elements, so the
|
|
-- inferred info matches what the elaborator actually sees.
|
|
|
|
/--
|
|
warning: This `do` element and its control-flow region are dead code. Consider refactoring your code to remove it.
|
|
-/
|
|
#guard_msgs in
|
|
example (cond : Bool) : IO Nat := do
|
|
for _ in [1, 2] do
|
|
if cond then break else break
|
|
return 42
|
|
return 1
|
|
|
|
/--
|
|
warning: This `do` element and its control-flow region are dead code. Consider refactoring your code to remove it.
|
|
-/
|
|
#guard_msgs in
|
|
example (cond : Bool) : IO Nat := do
|
|
for _ in [1, 2] do
|
|
if cond then continue else continue
|
|
return 42
|
|
return 1
|
|
|
|
#guard_msgs in
|
|
example (i : Nat) : IO Nat := do
|
|
for _ in [1, 2] do
|
|
match i with
|
|
| 0 => break
|
|
| _ => break
|
|
return 42
|
|
return 1
|
|
|
|
/--
|
|
warning: This `do` element and its control-flow region are dead code. Consider refactoring your code to remove it.
|
|
-/
|
|
#guard_msgs in
|
|
example : IO Nat := do
|
|
for _ in [1, 2] do
|
|
try break catch _ => break
|
|
return 42
|
|
return 1
|
|
|
|
/--
|
|
warning: This `do` element and its control-flow region are dead code. Consider refactoring your code to remove it.
|
|
-/
|
|
#guard_msgs in
|
|
example (cond : Bool) : IO Nat := do
|
|
for _ in [1, 2] do
|
|
unless cond do break
|
|
if cond then break else break
|
|
return 42
|
|
return 1
|
|
|
|
#guard_msgs in
|
|
example : IO Nat := do
|
|
for _ in [1, 2] do
|
|
repeat
|
|
pure ()
|
|
return 42
|
|
return 1
|
|
|
|
-- Break-less `repeat` under both branches of an `if`. If `repeat` reported
|
|
-- `numRegularExits := 0`, the if's combined info would have `numRegularExits = 0` too, and the
|
|
-- dead-code warning would fire on `return 2`. The user cannot remove `return 2` though: the loop
|
|
-- expression is `Id PUnit`, so without a trailing element the do block's result type can't be
|
|
-- `Id Nat`. We therefore pin `repeat`'s `numRegularExits` at `1` (same as `for ... in`).
|
|
#guard_msgs in
|
|
example (x : Nat) : Id Nat := do
|
|
if x = 3 then
|
|
repeat
|
|
pure ()
|
|
else
|
|
repeat
|
|
pure ()
|
|
return 2
|