summaryrefslogtreecommitdiff
path: root/test-suite/failure/guard.v
diff options
context:
space:
mode:
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 00000000..46208c29
--- /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).
+