packages feed

purescript-0.14.0: tests/purs/failing/InvalidDerivedInstance3.purs

-- @shouldFailWith PartiallyAppliedSynonym
module Main where

import Data.Newtype (class Newtype)

data D a
type S a = D a
newtype N = N S

derive instance newtypeN :: Newtype N _