packages feed

purescript-0.15.5: tests/purs/failing/FoldableInstance4.purs

-- @shouldFailWith NoInstanceFound
module FoldableInstance4 where

import Prelude
import Data.Foldable (class Foldable)

data T a = T (forall t. Show t => t -> a)
derive instance Foldable T