packages feed

aihc-parser-1.0.0.2: test/Test/Fixtures/oracle/InstanceSigs/instance-sig-default.hs

{- ORACLE_TEST pass -}
{-# LANGUAGE InstanceSigs #-}

module InstanceSigsDefault where

class Pretty a where
  pretty :: a -> String

instance Pretty Bool where
  pretty :: Bool -> String
  pretty True = "true"
  pretty False = "false"