{-# LANGUAGE FlexibleContexts #-} -- Split a module with a re-export module Split.Instances ( -- Symbols that are exported but not declared go into ReExported ) where import Split.Internal.Bar (Bar(Bar)) instance Show Bar where show (Bar n) = "Bar " ++ show n