lean4-htt/tests/lean/run/have3.lean
Leonardo de Moura 0f64b6088c chore(frontends/lean): remove then have ... notation
This notation was a leftover from Lean 0.1.
2017-06-19 14:20:52 -07:00

11 lines
231 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,
have H2 : a, from H1,
have H3 : a, from H2,
have H4 : a, from H3,
H4