lean4-htt/tests/lean/run/blast_pattern_inference_bug.lean
2016-06-10 18:29:41 -07:00

9 lines
207 B
Text

exit
constant p : nat → Prop
constant q : ∀ a, p a → Prop
lemma ex [forward] : ∀ (a : nat) (h : p a), (:q a h:) := sorry
set_option blast.strategy "ematch"
lemma test (h : p 0) : q 0 h :=
by blast