HaRe-0.8.0.0: test/testdata/LiftOneLevel/D3.hs.expected
module LiftOneLevel.D3 where
{-lift 'sq' to top level. This refactoring only affects the
current module. -}
sumSquares (x:xs) = sq x + sumSquares xs
sumSquares [] = 0
sq x = x ^ pow
pow = 2