blob: 73884683991aaccd05139aee9e03e23b59d197eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
(* Test propagation of clear/clearbody in existential variables *)
Section Test.
Variable p:nat.
Let q := S p.
Goal forall n m:nat, n = m.
intros.
eapply eq_trans.
clearbody q.
clear p. (* Error ... *)
Show Existentials.
|