HaRe-0.8.0.0: test/testdata/Demote/C1.hs
module Demote.C1 (module Demote.D1, module Demote.C1) where
import Demote.D1 hiding (main, sq)
sumSquares1 (x:xs) = sq x + sumSquares1 xs
where sq x = x ^pow
sumSquares1 [] = 0
module Demote.C1 (module Demote.D1, module Demote.C1) where
import Demote.D1 hiding (main, sq)
sumSquares1 (x:xs) = sq x + sumSquares1 xs
where sq x = x ^pow
sumSquares1 [] = 0