lean4-htt/tests/lean/run/autoboundIssues.lean
2021-03-23 17:33:15 -07:00

10 lines
250 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.

example : n.succ = 1 → n = 0 := by
intros h; injection h; assumption
example (h : n.succ = 1) : n = 0 := by
injection h; assumption
constant T : Type
constant T.Pred : T → T → Prop
example {ρ} (hρ : ρ.Pred σ) : T.Pred ρ ρ := sorry