lean4-htt/tests/lean/run/slack_eqn_issue.lean

14 lines
487 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.

lemma test1 {p : → Prop} {a : } (h : p a) : ∀b, b = a → p b
| ._ rfl := h
lemma test2 {p : → Prop} {a : } (h : p a) : ∀b, b = a → p a
| ._ rfl := h
lemma test3 {p : → Prop} {a : } (h : p a) : ∀b, a = b → p b
| ._ rfl := h
lemma test4 {p : → Prop} {a : } {f : } (h : p (f a)) : ∀b, b = f a → p b
| ._ rfl := h
lemma test5 {p : → Prop} {a : } {f : } (h : p (f a)) : ∀b, f a = b → p b
| ._ rfl := h