summaryrefslogtreecommitdiff
path: root/testsuite/tests/rename/should_compile/T7963.hs
blob: 3e1820e27745413505b9220f4b11bc718fddaaee (plain)
1
2
3
4
5
6
7
module T7963 where

import Prelude hiding (unlines)
import T7963a (unlines)

foo :: IO ()
foo = writeFile "/tmp/foo" (unlines ["hello", "world"])