blob: 8d626435aaa8e2035b38a1ff80715fe3381317fc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
module DeprecatedFunction where
-- | some documentation for foo
foo :: Int
foo = 23
{-# DEPRECATED foo "use `bar` instead" #-}
-- | some documentation for bar
bar :: Int
bar = 42
|