aboutsummaryrefslogtreecommitdiff
path: root/html-test/src/IgnoreExports.hs
diff options
context:
space:
mode:
Diffstat (limited to 'html-test/src/IgnoreExports.hs')
-rw-r--r--html-test/src/IgnoreExports.hs10
1 files changed, 10 insertions, 0 deletions
diff --git a/html-test/src/IgnoreExports.hs b/html-test/src/IgnoreExports.hs
new file mode 100644
index 00000000..0321ad02
--- /dev/null
+++ b/html-test/src/IgnoreExports.hs
@@ -0,0 +1,10 @@
+{-# OPTIONS_HADDOCK ignore-exports #-}
+module IgnoreExports (foo) where
+
+-- | documentation for foo
+foo :: Int
+foo = 23
+
+-- | documentation for bar
+bar :: Int
+bar = 23