lean4-htt/tests/lean/run/5475.lean
Sebastian Ullrich caf815b009
feat: improve infer binder type failure message and range (#8263)
This PR improves the message and range of infer binder type failures.

---------

Co-authored-by: Joseph Rotella <7482866+jrr6@users.noreply.github.com>
2025-07-14 20:19:11 +00:00

23 lines
465 B
Text
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/-!
# Eta arguments had wrong context in "don't know how to synthesize implicit" errors
https://github.com/leanprover/lean4/issues/5475
-/
set_option pp.mvars false
/-!
Formerly, argument `x` appeared as `_fvar.123`
-/
def f {α β : Type} (x: α) (y: β) : α := x
/--
error: don't know how to synthesize implicit argument 'α'
@f ?_ Nat x Nat.zero
context:
⊢ Type
---
error: Failed to infer type of example
-/
#guard_msgs in
example :=
f (y := Nat.zero)