aboutsummaryrefslogtreecommitdiff
path: root/html-test/src/HiddenInstancesA.hs
blob: f1775208669dd85d62f477a31783bc590003fee0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{-# OPTIONS_HADDOCK hide #-}
module HiddenInstancesA where

-- | Should be visible
class Foo a

-- | Should be visible
data Bar

-- | Should be visible
instance Foo Bar

-- | Should *not* be visible
data Baz

-- | Should *not* be visible
instance Foo Baz