aboutsummaryrefslogtreecommitdiff
path: root/tests/html-tests/tests/DeprecatedReExport.hs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/html-tests/tests/DeprecatedReExport.hs')
-rw-r--r--tests/html-tests/tests/DeprecatedReExport.hs15
1 files changed, 14 insertions, 1 deletions
diff --git a/tests/html-tests/tests/DeprecatedReExport.hs b/tests/html-tests/tests/DeprecatedReExport.hs
index 10a8c6a2..f851e2ff 100644
--- a/tests/html-tests/tests/DeprecatedReExport.hs
+++ b/tests/html-tests/tests/DeprecatedReExport.hs
@@ -1,3 +1,16 @@
-module DeprecatedReExport (foo) where
+-- |
+-- What is tested here:
+--
+-- * Deprecation messages are shown for re-exported items.
+--
+module DeprecatedReExport (
+-- * Re-exported from an other module
+ foo
+-- * Re-exported from an other package
+-- | Not yet working, see <http://trac.haskell.org/haddock/ticket/223>
+-- , isEmptyChan
+,
+) where
import DeprecatedFunction
+import Control.Concurrent.Chan