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

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

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