purescript-0.11.0: examples/passing/2663.purs
module Main where import Prelude import Control.Monad.Eff.Console (log) foo :: forall t. Warn "Example" => t -> t foo x = x main = when (foo 42 == 42) $ log "Done"
module Main where import Prelude import Control.Monad.Eff.Console (log) foo :: forall t. Warn "Example" => t -> t foo x = x main = when (foo 42 == 42) $ log "Done"