lean4-htt/tests/lean/run/have4.lean
2017-03-09 18:41:19 -08:00

11 lines
241 B
Text

prelude
definition Prop : Type.{1} := Type.{0}
constants a b c : Prop
axiom Ha : a
axiom Hb : b
axiom Hc : c
#check have H1 : a, from Ha,
then have H2 : a, from H1,
have H3 : a, from H2,
then have H4 : a, from H3,
H4