aboutsummaryrefslogtreecommitdiff
path: root/html-test/src/IgnoreExports.hs
blob: edb7c4c1c0c559d61c6babc40e24ac21739681b4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{-# OPTIONS_HADDOCK ignore-exports #-}
module IgnoreExports (Foo, foo) where

-- | documentation for Foo
data Foo = Bar -- ^ Documentation for Bar

-- | documentation for foo
foo :: Int
foo = 23

-- | documentation for bar
bar :: Int
bar = 23