packages feed

liquidhaskell-0.9.0.2.1: tests/neg/NoMethodBindingError.hs

{-# OPTIONS_GHC -Wno-missing-methods #-}
{-@ LIQUID "--expect-any-error" @-}
module NoMethodBindingError where

class Foo a where
  foo :: a -> a

instance Foo Int where
-- no method binding error
--
goo :: Int -> Int
goo = foo