packages feed

purescript-0.7.2.0: examples/failing/365.purs

-- @shouldFailWith CycleInDeclaration
module Main where

import Prelude

class C a where
  f :: a -> a
  g :: a -> a

instance cS :: C String where
  f s = s
  g = f

main = g "Done"