lean4-htt/tests/lean/690.lean.expected.out
Alok Singh 949cf69246
chore: use backticks for sorry in diagnostic messages (#11608)
This PR changes the "declaration uses 'sorry'" warning to use backticks
instead of single quotes, consistent with Lean's conventions for
formatting code identifiers in diagnostic messages.
2025-12-15 14:30:21 +00:00

13 lines
381 B
Text

690.lean:3:2-3:29: error: Too many variable names provided at alternative `step`: 3 provided, but 2 expected
case step
a b m✝ : Nat
hStep : a.le m✝
ih : a.le (m✝ + 1)
⊢ a.le (m✝.succ + 1)
690.lean:6:0-6:7: warning: declaration uses `sorry`
case step
a b x : Nat
hStep : a.le x
ih : a.le (x + 1)
⊢ a.le (x.succ + 1)
690.lean:11:0-11:7: warning: declaration uses `sorry`