aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/success/evars.v
diff options
context:
space:
mode:
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 *)