lean2/tests/lean/run/tactic22.lean

6 lines
181 B
Text
Raw Normal View History

import standard
using tactic
theorem T (a b c d : Bool) (Ha : a) (Hb : b) (Hc : c) (Hd : d) : a ∧ b ∧ c ∧ d
:= by fixpoint (λ f, [apply @and_intro; f | assumption; f | id])