aboutsummaryrefslogblamecommitdiff
path: root/html-test/src/BugDeprecated.hs
blob: 7741786fad09c5be2725bb13ab36cf6f0fc34080 (plain) (tree)
1
2
3
4
5
6
7
8
9
                          
          
        
          
        
          



                                
                               
        
          
        
            


                                    
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" #-}