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.
9 lines
161 B
Text
9 lines
161 B
Text
k : Nat
|
|
this : f 10 = 11
|
|
x : Nat := 10
|
|
⊢ 11 = k
|
|
k : Nat
|
|
this : f 10 = 11
|
|
⊢ let x := 10;
|
|
11 = k
|
|
introLetBug.lean:2:0-2:7: warning: declaration uses `sorry`
|