lean4-htt/tests/lean/run/and_intros.lean
Scott Morrison 3a6ebd88bb
chore: upstream repeat/split_ands/subst_eqs (#3305)
Small tactics used in the implementation of `ext`.

---------

Co-authored-by: Leonardo de Moura <leomoura@amazon.com>
2024-02-13 12:21:14 +00:00

7 lines
158 B
Text

example (hp : p) (hq : q) (hr : r) : (p ∧ q) ∧ (q ∧ (r ∧ p)) := by
and_intros
· exact hp
· exact hq
· exact hq
· exact hr
· exact hp