HaRe-0.8.0.0: test/testdata/LiftToToplevel/Where3.expected.hs
module LiftToToplevel.Where3 where foo n = bar [] n bar _ 0 = [] bar acc c = acc ++ [c] ++ (bar acc (c-1))
module LiftToToplevel.Where3 where foo n = bar [] n bar _ 0 = [] bar acc c = acc ++ [c] ++ (bar acc (c-1))