2015-12-03 07:32:13 +00:00
|
|
|
constant P : nat → Prop
|
|
|
|
definition h [reducible] (n : nat) := n
|
|
|
|
definition foo [forward] : ∀ x, P (h x) := sorry
|
|
|
|
|
2015-12-06 23:01:49 +00:00
|
|
|
set_option blast.strategy "ematch"
|
2015-12-03 07:32:13 +00:00
|
|
|
|
|
|
|
example (n : nat) : P (h n) :=
|
|
|
|
by blast
|