summaryrefslogtreecommitdiff
path: root/test-suite/failure/evarclear1.v
blob: 2e9fa0f35c7a756535864b44d1b45d8ff1a442aa (plain)
1
2
3
4
5
6
7
8
9
10
Set Printing Existential Instances.
Set Printing All.
Goal forall y, let z := S y in exists x, x = 0.
intros.
eexists.
unfold z.
clear y z.
(* should fail because the evar should no longer be allowed to depend on z *)
instantiate (1:=z).