aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/bugs
diff options
context:
space:
mode:
authorGravatar Maxime Dénès <mail@maximedenes.fr>2017-03-23 14:50:03 +0100
committerGravatar Maxime Dénès <mail@maximedenes.fr>2017-03-23 14:50:03 +0100
commitb26fe2bc160e3b6362e97b8331a6d0831b9985f1 (patch)
tree6530e61c2dc8d51a84b13bcbab2e5e114b47e5ce /test-suite/bugs
parent595a6251c90d871f8928784c8f4375077c6c5878 (diff)
parent9f69250d5ba4116bad85662830460f1519edbe30 (diff)
Merge branch 'v8.6' into trunk
Diffstat (limited to 'test-suite/bugs')
-rw-r--r--test-suite/bugs/closed/5372.v7
1 files changed, 7 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/5372.v b/test-suite/bugs/closed/5372.v
new file mode 100644
index 000000000..2dc78d4c7
--- /dev/null
+++ b/test-suite/bugs/closed/5372.v
@@ -0,0 +1,7 @@
+(* coq bug 5372: https://coq.inria.fr/bugs/show_bug.cgi?id=5372 *)
+Function odd (n:nat) :=
+ match n with
+ | 0 => false
+ | S n => true
+ end
+with even (n:nat) := false.