DEBSOURCES
Skip Quicknav
sources / haskell-ormolu / 0.8.0.0-1 / data / examples / declaration / class / default-signatures-simple.hs
12345678
module Main where -- | Something. class Foo a where -- | Foo foo :: a -> String default foo :: Show a => a -> String foo = show