aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/success/evars.v
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2003-01-19 23:05:10 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2003-01-19 23:05:10 +0000
commitd3950750f636057674c0ee527d5c05937faf90a2 (patch)
treefcb75abc28ad2932409cc0fb89c512d0a74f8e9f /test-suite/success/evars.v
parent326617c10cc2e63d71d09300e7de0c7f4ea18f33 (diff)
Il ne doit plus y avoir de preuves non terminées à la sortie du fichier
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@3538 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'test-suite/success/evars.v')
-rw-r--r--test-suite/success/evars.v9
1 files changed, 1 insertions, 8 deletions
diff --git a/test-suite/success/evars.v b/test-suite/success/evars.v
index f17fecc1e..a7b6d6d83 100644
--- a/test-suite/success/evars.v
+++ b/test-suite/success/evars.v
@@ -1,14 +1,7 @@
-(***********************************************************************)
-(* v * The Coq Proof Assistant / The Coq Development Team *)
-(* <O___,, * INRIA-Rocquencourt & LRI-CNRS-Orsay *)
-(* \VV/ *************************************************************)
-(* // * This file is distributed under the terms of the *)
-(* * GNU Lesser General Public License Version 2.1 *)
-(***********************************************************************)
(* The "?" of cons and eq should be inferred *)
Variable list:Set -> Set.
Variable cons:(T:Set) T -> (list T) -> (list T).
-Goal (n:(list nat)) (EX l| (EX x| (n = (cons ? x l)))).
+Check (n:(list nat)) (EX l| (EX x| (n = (cons ? x l)))).
(* Examples provided by Eduardo Gimenez *)