summaryrefslogtreecommitdiff
path: root/contrib/subtac/test/Mutind.v
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/subtac/test/Mutind.v')
-rw-r--r--contrib/subtac/test/Mutind.v7
1 files changed, 7 insertions, 0 deletions
diff --git a/contrib/subtac/test/Mutind.v b/contrib/subtac/test/Mutind.v
new file mode 100644
index 00000000..ab200354
--- /dev/null
+++ b/contrib/subtac/test/Mutind.v
@@ -0,0 +1,7 @@
+Fixpoint f (a : nat) : nat := match a with 0 => 0
+| S a' => g a a'
+ end
+with g (a b : nat) { struct b } : nat :=
+ match b with 0 => 0
+ | S b' => f b'
+ end. \ No newline at end of file