blob: 2016d3d5b59aa91bcc7a982072dfe0d66f94afff (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{-# LANGUAGE Haskell2010 #-}
{-# 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
|