fix(tests/lean/run/elim2): adjust test to reflect recent changes

This commit is contained in:
Leonardo de Moura 2015-02-05 10:54:00 -08:00
parent d6958be7e7
commit 1b73764ad3

View file

@ -4,5 +4,5 @@ constant p : num → num → num → Prop
axiom H1 : ∃ x y z, p x y z
axiom H2 : ∀ {x y z : num}, p x y z → p x x x
theorem tst : ∃ x, p x x x
:= obtain a b c H [visible], from H1,
:= obtain a b c H, from H1,
by (apply exists.intro; apply H2; eassumption)