packages feed

aihc-parser-1.0.0.2: test/Test/Fixtures/oracle/OverlappingInstances/instance-incoherent-pragma.hs

{- ORACLE_TEST pass -}

module InstanceIncoherentPragma where

class Select a where
  select :: a -> String

instance {-# INCOHERENT #-} Select [a] where
  select _ = "list"

instance Select [Int] where
  select _ = "ints"