diff options
Diffstat (limited to 'testsuite/tests/rename/should_compile/rn025.hs')
-rw-r--r-- | testsuite/tests/rename/should_compile/rn025.hs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/testsuite/tests/rename/should_compile/rn025.hs b/testsuite/tests/rename/should_compile/rn025.hs new file mode 100644 index 0000000000..b8bf1ffe94 --- /dev/null +++ b/testsuite/tests/rename/should_compile/rn025.hs @@ -0,0 +1,5 @@ +-- !!! Re-exporting a module whose contents is partially hidden. +module ShouldCompile ( module Data.List ) where + +import Data.List hiding ( sort ) + |