summaryrefslogtreecommitdiff
path: root/test-suite/failure/evarclear2.v
blob: e606a06f101a3a964830ddf5af89997db6734d90 (plain)
1
2
3
4
5
6
7
8
9
Set Printing Existential Instances.
Set Printing All.
Goal let y:=0 in exists x:y=y, x = x.
intros.
eexists.
rename y into z.
unfold z at 1 2.
(* should fail because the evar type depends on z *)
clear z.