aboutsummaryrefslogtreecommitdiff
path: root/html-test/src/DeprecatedRecord.hs
blob: d44499e7b97972ee1af8a97ae329a93ae4a1f123 (plain) (blame)
1
2
3
4
5
6
7
8
9
module DeprecatedRecord where

-- | type Foo
data Foo = Foo {
  fooName  :: String -- ^ some name
, fooValue :: Int    -- ^ some value
}

{-# DEPRECATED fooValue "do not use this" #-}