packages feed

purescript-0.6.9.4: examples/failing/365.purs

module Main where

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

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

main = g "Done"