aboutsummaryrefslogtreecommitdiff
path: root/html-test/src/BugExportHeadings.hs
blob: a5493a08494fc94479d394c00178f144feee8e74 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
-- test for #192
module BugExportHeadings (
-- * Foo
  foo
-- * Bar
, bar
-- * Baz
, baz

-- * One
, one
-- * Two
, two
-- * Three
, three
) where

foo, bar, baz :: Int
foo = 23
bar = 23
baz = 23

one, two, three :: Int
one = 23
two = 23
three = 23
{-# DEPRECATED one "for one" #-}
{-# DEPRECATED two "for two" #-}
{-# DEPRECATED three "for three" #-}