aboutsummaryrefslogtreecommitdiff
path: root/html-test/src/BugDeprecated.hs
blob: 7741786fad09c5be2725bb13ab36cf6f0fc34080 (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
module BugDeprecated where

foo :: Int
foo = 23

bar :: Int
bar = 23

baz :: Int
baz = 23
{-# DEPRECATED foo "for foo" #-}
{-# DEPRECATED bar "for bar" #-}
{-# DEPRECATED baz "for baz" #-}

-- | some documentation for one
one :: Int
one = 23

two :: Int
two = 23

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