purescript-0.12.0: tests/purs/passing/ConstraintParens.purs
module Main where import Prelude import Effect.Console (log) class Foo a where foo ∷ a → a test ∷ ∀ a. (Foo a) ⇒ a → a test = foo main = log "Done"
module Main where import Prelude import Effect.Console (log) class Foo a where foo ∷ a → a test ∷ ∀ a. (Foo a) ⇒ a → a test = foo main = log "Done"