ref: cf20fb934e9af13b64c2365cbf95d974f30b5c9d
dir: /lib/Data/Orphans.hs/
-- Instance declarations that can't be put where
-- due to import cycles.
module Data.Orphans where
import Prelude(); import MiniPrelude
instance (Show a) => Show (Down a) where
showsPrec d (Down x) = showParen (d > 10) $
showString "Down " . showsPrec 11 x