aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorMaxime Dénès2017-06-30 13:38:58 +0200
committerMaxime Dénès2017-06-30 13:38:58 +0200
commit654a7b390f4062d9962e42d83537aa520fe82f2b (patch)
treee178c69677a6c8d769011f326033359c2b399255 /test-suite
parent6d7c392b73eaa021083ab03c9042d271fb4c28c0 (diff)
parent10c81e90a836c8abea32bc6157976b9adf7775fa (diff)
Merge PR#843: closing bug #5618 introduce by PR 828
Diffstat (limited to 'test-suite')
-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 0000000000..ab88a88f44
--- /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. \ No newline at end of file