packages feed

ormolu-0.0.1.0: data/examples/declaration/class/default-signatures-simple-out.hs

module Main where

-- | Something.
class Foo a where

  -- | Foo
  foo :: a -> String

  default foo :: Show a => a -> String
  foo = show