packages feed

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

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

import LiftToToplevel.D2 hiding (sq)

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

anotherFun [] = 0