blob: 38fb710138044bbfb03788a91e844d5a90715f1c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{-# LANGUAGE Haskell2010 #-}
module NamespacedIdentifiers where
-- | A link to:
--
-- * the type t'Bar'
-- * the constructor v'Bar'
-- * the unimported but qualified type t'A.A'
-- * the unimported but qualified value v'A.A'
--
data Foo = Bar
-- | A link to the value v'Foo' (which shouldn't exist).
data Bar
|