diff options
Diffstat (limited to 'html-test/src/DeprecatedFunction.hs')
-rw-r--r-- | html-test/src/DeprecatedFunction.hs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/html-test/src/DeprecatedFunction.hs b/html-test/src/DeprecatedFunction.hs new file mode 100644 index 00000000..8d626435 --- /dev/null +++ b/html-test/src/DeprecatedFunction.hs @@ -0,0 +1,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 |