summaryrefslogtreecommitdiff
path: root/contrib/subtac/test/Mutind.v
blob: ab200354c60a517d613238d854080033e313dfb9 (plain)
1
2
3
4
5
6
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.