packages feed

fourmolu-0.0.6.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