lean2/tests/lean/subst2.lean.expected.out
Leonardo de Moura 935c2a03a3 feat(*): change name conventions for Lean builtin libraries
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2014-01-05 19:21:44 -08:00

15 lines
583 B
Text

Set: pp::colors
Set: pp::unicode
Proved: T
theorem T (A : Type) (p : A → Bool) (f : A → A → A) : ∀ x y z : A,
p (f x x) ⇒ x = y ⇒ x = z ⇒ p (f y z) :=
forall::intro
(λ x : A,
forall::intro
(λ x::1 : A,
forall::intro
(λ x::2 : A,
discharge
(λ H : p (f x x),
discharge
(λ H::1 : x = x::1, discharge (λ H::2 : x = x::2, subst (subst H H::1) H::2))))))