summaryrefslogtreecommitdiff
path: root/testsuite/tests/rename/should_compile/T7963.hs
diff options
context:
space:
mode:
authorSimon Peyton Jones <simonpj@microsoft.com>2013-06-17 22:58:45 +0100
committerSimon Peyton Jones <simonpj@microsoft.com>2013-06-17 22:58:45 +0100
commit82fc26124f92499392b736432c4586b49706759c (patch)
tree239b11cbfbb0202789d8451a6ce903ee36eb531e /testsuite/tests/rename/should_compile/T7963.hs
parent08da282549376ca8458501c82e85cf59392c0f70 (diff)
downloadhaskell-82fc26124f92499392b736432c4586b49706759c.tar.gz
Test Trac #7963
Diffstat (limited to 'testsuite/tests/rename/should_compile/T7963.hs')
-rw-r--r--testsuite/tests/rename/should_compile/T7963.hs7
1 files changed, 7 insertions, 0 deletions
diff --git a/testsuite/tests/rename/should_compile/T7963.hs b/testsuite/tests/rename/should_compile/T7963.hs
new file mode 100644
index 0000000000..3e1820e277
--- /dev/null
+++ b/testsuite/tests/rename/should_compile/T7963.hs
@@ -0,0 +1,7 @@
+module T7963 where
+
+import Prelude hiding (unlines)
+import T7963a (unlines)
+
+foo :: IO ()
+foo = writeFile "/tmp/foo" (unlines ["hello", "world"])