summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghci.debugger/scripts/break026.hs
blob: e88b9e96d7966cebdd00e2c5ee510a164bf90575 (plain)
1
2
3
4
5
6
7
module Test where

import Prelude hiding (foldl)

foldl f c xs = go c xs
  where go c []     = c
        go c (x:xs) = go (f c x) xs