lean4-htt/tests/lean/autoIssue.lean.expected.out
Leonardo de Moura 2652cc18b8
chore: error messages consistency (#10143)
This PR standardizes error messages by quoting names with backticks. The
changes were automated, so some cases may still be missing.
2025-08-26 17:55:43 +00:00

43 lines
916 B
Text

A.a' (self : A) : self.x = 1
z : A
this : z.x = 1
⊢ z.x = 1
z : A
this : z.x = 1
⊢ z.x = 1
A.rec.{u} {motive : A → Sort u} (mk : (x : Nat) → (a' : x = 1) → motive { x := x, a' := a' }) (t : A) : motive t
z : A
x : Nat
a' : x = 1
⊢ { x := x, a' := a' }.x = 1
case mk
x : Nat
a' : x = 1
⊢ { x := x, a' := a' }.x = 1
case mk
x y : Nat
⊢ { x := x, y := y } = { x := x, y := y }
a.1 = 1
z : A
x✝ : Nat
h : x✝ = 1
⊢ { x := x✝, a' := h }.x = 1
z : A
x : Nat
a' : x = 1
⊢ { x := x, a' := a' }.x = 1
autoIssue.lean:60:18-60:19: error: don't know how to synthesize placeholder
context:
⊢ 1 = 1
autoIssue.lean:63:9-63:10: error: don't know how to synthesize placeholder for argument `a'`
context:
⊢ 1 = 1
autoIssue.lean:68:6-68:7: error: don't know how to synthesize placeholder for argument `h`
context:
⊢ 2 = 1
autoIssue.lean:72:2-72:6: error: unsolved goals
case h
⊢ ?x = 1
case x
⊢ Nat