aboutsummaryrefslogtreecommitdiff
path: root/html-test/tests/BugDeprecated.hs
blob: 0f7ac2eb8433dbb319244b9ab7894c08844f6a34 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
module BugDeprecated where

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

-- | some documentation for one, two and three
one, two, three :: Int
one = 23
two = 23
three = 23
{-# DEPRECATED one "for one" #-}
{-# DEPRECATED two "for two" #-}
{-# DEPRECATED three "for three" #-}