aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/output/Fixpoint.out
blob: 9873ad533beb0983856684aaf7b8bdb26a26c06a (plain)
1
2
3
4
5
6
7
Fix F
  {F [A,B:Set; f:(A ->B); l:(list A)] : (list B) :=
     Cases l of
       nil => (nil B)
     | (cons a l0) => (cons (f a) (F A B f l0))
     end}
     : (A,B:Set)(A ->B) ->(list A) ->(list B)