lean4-htt/tests/lean/convInConv.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

20 lines
344 B
Text

x : Nat
| id (twice (id x))
x : Nat
| id x
x : Nat
| x
x : Nat
| id (twice x)
y : Nat
| (fun x => x + y = 0) = fun x => False
y : Nat
| fun x => x + y = 0
case h
y x : Nat
| y + x = 0
y : Nat
| (fun x => y + x = 0) = fun x => False
y : Nat
⊢ (fun x => y + x = 0) = fun x => False
convInConv.lean:15:8-15:12: warning: declaration uses `sorry`