shithub: MicroHs

ref: a4f5892f3b4aa79446f85e4b60f01564a1f18a9c
dir: /lib/Data/Orphans.hs/

View raw version
-- 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