packages feed

aihc-parser-1.0.0.2: test/Test/Fixtures/oracle/StandaloneDeriving/standalone-deriving-parenthesized.hs

{- ORACLE_TEST pass -}
{-# LANGUAGE StandaloneDeriving #-}

module StandaloneDerivingParenthesized where

data Tree a = Leaf a | Branch (Tree a) (Tree a)

deriving instance (Eq a) => Eq (Tree a)