packages feed

HaRe-0.8.0.0: test/testdata/LiftToToplevel/C2.hs

module LiftToToplevel.C2 (module LiftToToplevel.D2, module LiftToToplevel.C2) where 

import LiftToToplevel.D2

anotherFun (x:xs) =  x^4 + anotherFun xs

anotherFun [] = 0