8 lines
188 B
Text
8 lines
188 B
Text
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
|