packages feed

purescript-0.9.1: examples/failing/ExportExplicit1.purs

-- @shouldFailWith UnknownName
module Main where

import M1
import Control.Monad.Eff.Console (log)

testX = X

-- should fail as Y constructor is not exported from M1
testY = Y

main = log "Done"