purescript-0.7.0.0: examples/failing/365.purs
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"
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"