packages feed

purescript-0.15.15: tests/purs/failing/InstanceExport/InstanceExport.purs

module InstanceExport (S(..), f) where

import Prelude

newtype S = S String

class F a where
  f :: a -> String

instance fs :: F S where
  f (S s) = s