2015-12-05 19:43:48 -08:00
|
|
|
constants {A : Type.{1}} (P : A → Prop) (Q : A → Prop)
|
|
|
|
definition H : ∀ a, (: P a :) → Exists Q := sorry
|
|
|
|
|
2015-12-07 12:23:01 -08:00
|
|
|
set_option blast.strategy "ematch"
|
2015-12-05 19:43:48 -08:00
|
|
|
|
|
|
|
example (a : A) : P a → Exists Q :=
|
|
|
|
by blast
|