packages feed

purescript-0.12.0: tests/purs/passing/NonConflictingExports.purs

-- No failure here as the export `thing` only refers to Main.thing
module Main (thing, main) where

import A
import Effect.Console (log)

thing :: Int
thing = 2

main = log "Done"