summaryrefslogtreecommitdiff
path: root/test-suite/bugs/closed/4202.v
blob: 522a3604a3bbf883bf8e65e82aacdbe8ab47d10b (plain)
1
2
3
4
5
6
7
8
9
10
Parameter g : nat -> Prop.
Axiom a : forall n, g (S n).
Lemma foo (H : True) : exists n, g n /\ g n.
eexists.
clear H.
split.
simple apply a.
(* goal is "g (S ?Goal0@ {H:=H})" while H has long ceased to exist *)
simpl.
Abort.