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