packages feed

haskell-language-server-2.7.0.0: plugins/hls-class-plugin/test/testdata/AllMethodsRequired.hs

module AllMethodsRequired where

class Test a where
  f :: a
  g :: a
  {-# MINIMAL f,g #-}

instance Test [a] where