packages feed

purescript-0.7.0.0: examples/failing/NoOverlap.purs

module Main where

import Prelude

data Foo = Foo

instance showFoo1 :: Show Foo where
  show _ = "Foo"

instance showFoo2 :: Show Foo where
  show _ = "Bar"

test = show Foo