packages feed

purescript-0.12.0: tests/purs/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"