blob: 9dfef1768344253f68b8470df8cc2fa8b7cc8336 (
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
|
{-# LANGUAGE Haskell2010 #-}
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" #-}
|