lean4-htt/tests/lean/run/simpPartialApp.lean
Leonardo de Moura 1282fb2d97 fix: getMatchWithExtra
`getMatchKeyArgs` returns arguments in reverse order.
2021-09-25 08:36:12 -07:00

9 lines
205 B
Text

variable {U V}
def f : (U → V) → (U → U) := sorry
def add {U} : U → U → U := sorry
@[simp] theorem foo (u : U) : f (add u) = id := sorry
def bar (u v : U) : f (add u) v = id v := by
simp