packages feed

ormolu-0.5.3.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