aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorherbelin2008-04-28 08:19:14 +0000
committerherbelin2008-04-28 08:19:14 +0000
commit904116af36e25ba85049337b14e4ab17396d05a3 (patch)
tree2d93e019cd3499f87f28e98898e6b5e58a76f746 /test-suite
parent7e6ce51bf1a7beea6fa7818d2e5447ade79c30e7 (diff)
Petites corrections vis à vis des commits 10860, 10859, 10850
- pour le "try", la nouvelle erreur CannotFindWellTypedAbstraction doit être catchable - pour accomoder Type -1 dans le discharge, il faut un refresh_universes strict - bugs dans les fichiers de test-suite git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@10861 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/output/Fixpoint.out2
-rw-r--r--test-suite/success/apply.v9
2 files changed, 5 insertions, 6 deletions
diff --git a/test-suite/output/Fixpoint.out b/test-suite/output/Fixpoint.out
index cbb387ce9b..f4270d3de9 100644
--- a/test-suite/output/Fixpoint.out
+++ b/test-suite/output/Fixpoint.out
@@ -22,4 +22,4 @@ fix even_pos_odd_pos 2
destruct H.
apply even_pos_odd_pos in H.
omega.
-
+
diff --git a/test-suite/success/apply.v b/test-suite/success/apply.v
index e3fed09e7d..deeab4cb6d 100644
--- a/test-suite/success/apply.v
+++ b/test-suite/success/apply.v
@@ -175,12 +175,11 @@ Theorem t : r true false.
apply ax with (R := r).
Qed.
+(* Check verification of type at unification (submitted by Stéphane Lengrand):
+ without verification, the first "apply" works what leads to the incorrect
+ instantiation of x by Prop *)
-(* Check verification of type at unification (Submitted by Stéphane Lengrand)
- (without verification, the first "apply" works which leads to wrongly
- instantiate x by Prop) *)
-
-Theorem t: ~(forall x:Prop, ~x).
+Theorem u : ~(forall x:Prop, ~x).
unfold not.
intro.
eapply H.