blob: f851e2ff73207fe3fb5cdd86b888fbba221c9c5c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
-- |
-- 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
|