packages feed

proto3-suite-0.10.0: test-files/extra_instances_deriving.hs

{-# LANGUAGE StandaloneDeriving #-}

module ExtraInstances where

data Foo = Foo

helper :: Int
helper = 42

instance Show Foo where
  show _ = "Foo"

deriving instance Eq Foo