aboutsummaryrefslogtreecommitdiff
path: root/html-test/src/DeprecatedTypeFamily.hs
blob: 70473bb80330404db96d4f39066eb0ecef68c27c (plain) (blame)
1
2
3
4
5
6
7
8
9
{-# LANGUAGE TypeFamilies #-}
module DeprecatedTypeFamily where

-- | some documentation
data family SomeTypeFamily k :: * -> *
{-# DEPRECATED SomeTypeFamily "SomeTypeFamily" #-}

data family SomeOtherTypeFamily k :: * -> *
{-# DEPRECATED SomeOtherTypeFamily "SomeOtherTypeFamily" #-}