aihc-parser-1.0.0.2: test/Test/Fixtures/oracle/pragma/SpecializeInstancePragma.hs
{- ORACLE_TEST pass -}
module SpecializeInstancePragma where
data Foo a = Foo a
data Bar = Bar deriving (Eq)
instance Eq a => Eq (Foo a) where
{-# SPECIALIZE instance Eq (Foo [(Int, Bar)]) #-}
Foo x == Foo y = x == y