lean2/tests/lean/run/570.lean
Leonardo de Moura e379034b95 feat(library/tactic): improve 'assumption' tactic
- It uses the unifier in "conservative" mode
- It only affects the current goal

closes #570
2015-05-02 17:33:54 -07:00

16 lines
247 B
Text
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

open nat
variables (P : → Prop)
example (H1 : ∃n, P n) : ∃n, P n :=
begin
cases H1 with n p,
apply (exists.intro n),
assumption
end
example (H1 : ∃n, P n) : ∃n, P n :=
begin
cases H1 with n p,
existsi n,
assumption
end