As described at issue #1760, the new error message is: ``` 1760.lean:6:18: error: type mismatch at application f x term x has type big_type : Type 1 but is expected to have type ?m_1 : Type ```
21 lines
340 B
Text
21 lines
340 B
Text
f : A → A
|
||
def4.lean:9:9: error: type mismatch at application
|
||
f 0
|
||
term
|
||
0
|
||
has type
|
||
ℕ : Type
|
||
but is expected to have type
|
||
A : Type u
|
||
g : A → A
|
||
def4.lean:17:9: error: type mismatch at application
|
||
g 0
|
||
term
|
||
0
|
||
has type
|
||
ℕ : Type
|
||
but is expected to have type
|
||
A : Type u
|
||
f : Π (A : Type u_1), A → A
|
||
f ℕ 0 : ℕ
|
||
g 0 : ℕ
|