purescript-0.15.15: tests/purs/passing/LetInInstance.purs
module Main where
import Prelude
import Effect.Console (log)
class Foo a where
foo :: a -> String
instance fooString :: Foo String where
foo = go
where
go :: String -> String
go s = s
main = log "Done"