aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/bugs
diff options
context:
space:
mode:
authorGravatar Jason Gross <jgross@mit.edu>2014-04-05 16:22:59 -0400
committerGravatar Pierre Boutillier <pierre.boutillier@ens-lyon.org>2014-04-10 14:43:34 +0200
commitff8bac52149f8a32498f765bd579e00fcbd4f080 (patch)
tree4d25a4f03078f36469cc9bf3c74571cc9a181454 /test-suite/bugs
parentb7ac6edf68e7da87c5ff59307323a752e98532f2 (diff)
Test case for bug 3037
Diffstat (limited to 'test-suite/bugs')
-rw-r--r--test-suite/bugs/closed/3037.v11
1 files changed, 11 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/3037.v b/test-suite/bugs/closed/3037.v
new file mode 100644
index 000000000..baa7eff54
--- /dev/null
+++ b/test-suite/bugs/closed/3037.v
@@ -0,0 +1,11 @@
+(* Anomaly before 4a8950ec7a0d9f2b216e67e69b446c064590a8e9 *)
+
+Require Import Recdef.
+
+Function f_R (a: nat) {wf (fun x y: nat => False) a}:Prop:=
+ match a:nat with
+ | 0 => True
+ | (S y') => f_R y'
+ end.
+(* Anomaly: File "plugins/funind/recdef.ml", line 916, characters 13-19: Assertion failed.
+Please report. *)