X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2FgTopLevel%2Ftests%2Ffix00.cic;fp=helm%2FgTopLevel%2Ftests%2Ffix00.cic;h=f7b196c8770526f9f9da17a3fb129f5364eec791;hb=1582072f9fce52a7f0bfabdff927744fe3f9ecbf;hp=0000000000000000000000000000000000000000;hpb=94f7a64737db624ccf89e7be9a9c547ecaa718ac;p=helm.git diff --git a/helm/gTopLevel/tests/fix00.cic b/helm/gTopLevel/tests/fix00.cic new file mode 100644 index 000000000..f7b196c87 --- /dev/null +++ b/helm/gTopLevel/tests/fix00.cic @@ -0,0 +1,8 @@ +let rec fact = + \lambda x:nat. + [\lambda x:nat. nat] + match x:nat with + [ O \Rightarrow 1 + | (S (x: nat)) \Rightarrow (mult (S x) (fact x)) ] +in +(fact 4)