summaryrefslogtreecommitdiff
path: root/test-suite/bugs/closed/5618.v
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/bugs/closed/5618.v')
-rw-r--r--test-suite/bugs/closed/5618.v9
1 files changed, 9 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/5618.v b/test-suite/bugs/closed/5618.v
new file mode 100644
index 00000000..47e0e92d
--- /dev/null
+++ b/test-suite/bugs/closed/5618.v
@@ -0,0 +1,9 @@
+Require Import FunInd.
+
+Function test {T} (v : T) (x : nat) : nat :=
+ match x with
+ | 0 => 0
+ | S x' => test v x'
+ end.
+
+Check R_test_complete.