aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/failure/guard.v
diff options
context:
space:
mode:
authorGravatar barras <barras@85f007b7-540e-0410-9357-904b9bb8a0f7>2006-12-13 12:13:40 +0000
committerGravatar barras <barras@85f007b7-540e-0410-9357-904b9bb8a0f7>2006-12-13 12:13:40 +0000
commitdf09107e5d8732d32af0f43f0f85474bd73ac21e (patch)
tree086628c3bdf0c7cdd0a827edc2219ccabad0276a /test-suite/failure/guard.v
parentf2690d71189a168490b4cc99108e000476626d44 (diff)
test condition de garde
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@9449 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'test-suite/failure/guard.v')
-rw-r--r--test-suite/failure/guard.v10
1 files changed, 10 insertions, 0 deletions
diff --git a/test-suite/failure/guard.v b/test-suite/failure/guard.v
new file mode 100644
index 000000000..46208c297
--- /dev/null
+++ b/test-suite/failure/guard.v
@@ -0,0 +1,10 @@
+(************************************************************************)
+(* v * The Coq Proof Assistant / The Coq Development Team *)
+(* <O___,, * CNRS-Ecole Polytechnique-INRIA Futurs-Universite Paris Sud *)
+(* \VV/ **************************************************************)
+(* // * This file is distributed under the terms of the *)
+(* * GNU Lesser General Public License Version 2.1 *)
+(************************************************************************)
+
+Fixpoint F (n:nat) : False := F (match F n with end).
+