alexjbest / leaff

Leaff is a diff tool for Lean environments
Apache License 2.0
15 stars 1 forks source link

Detect changes between implicit and explicit arguments #4

Open urkud opened 9 months ago

urkud commented 9 months ago

Reported on Zulip by @chrisflav.

Minimal example:

theorem foo (α β : Type) (a b : α) (f : α → β) (h : a = b) : f a = f b :=
  congrArg f h

vs

theorem foo {α β : Type} (a b : α) (f : α → β) (h : a = b) : f a = f b :=
  congrArg f h

should be shown as different.