packages feed

purescript-0.15.15: tests/purs/passing/2972.purs

module Main where

import Effect.Console (log)
import Prelude (class Show, show)

type I t = t

newtype Id t = Id t

instance foo :: Show (I t) => Show (Id t) where
  show (Id t) = "Done"

main = log (show (Id "other"))