lean4-htt/tests/lean/run/1954.lean
2020-10-25 09:16:38 -07:00

4 lines
101 B
Text

def all (p : Nat → Prop) : Prop := ∀x, p x
example {p : Nat → Prop} (h : all p) : p 0 := h 0