blob: 34df47da2994b58272a03a057812e60aa6b7f90d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
module DeprecatedTypeSynonym where
-- | some documentation
type TypeSyn = String
{-# DEPRECATED TypeSyn "TypeSyn" #-}
type OtherTypeSyn = String
{-# DEPRECATED OtherTypeSyn "OtherTypeSyn" #-}
|