test(tests/lean/run): add Dan's reducible+ematch test

This commit is contained in:
Leonardo de Moura 2015-12-02 23:32:13 -08:00
parent 87995b96e3
commit 1c1cfdd010

View file

@ -0,0 +1,8 @@
constant P : nat → Prop
definition h [reducible] (n : nat) := n
definition foo [forward] : ∀ x, P (h x) := sorry
set_option blast.ematch true
example (n : nat) : P (h n) :=
by blast