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