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