aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/output/Naming.v
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2009-12-03 23:09:05 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2009-12-03 23:09:05 +0000
commit7533b5b51bfaa580fb237591b0fc747e0172526d (patch)
tree87f50625f2800903053eacc3d136a106402a2522 /test-suite/output/Naming.v
parentadd340bfaa3fed3ae77956c510c291ed4f9b8646 (diff)
Still continuing r12485-12486, r12549, r12556 (cleaning around name generation)
Removed one more bug in simplification of visibly_occur_id in r12549 + improved CHANGES message git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@12561 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'test-suite/output/Naming.v')
-rw-r--r--test-suite/output/Naming.v9
1 files changed, 9 insertions, 0 deletions
diff --git a/test-suite/output/Naming.v b/test-suite/output/Naming.v
index 89e641ac9..327643dc5 100644
--- a/test-suite/output/Naming.v
+++ b/test-suite/output/Naming.v
@@ -80,3 +80,12 @@ before the intros and
after (note the x5/x0 and the S0/S) *)
Abort.
+
+(* Check naming in hypotheses *)
+
+Goal forall a, (a = 0 -> forall a, a = 0) -> a = 0.
+intros.
+Show.
+apply H with (a:=a). (* test compliance with printing *)
+Abort.
+