packages feed

purescript-0.14.0: tests/purs/warning/HiddenConstructorsNewtype.purs

-- @shouldWarnWith HiddenConstructors
module Main (N) where

import Data.Newtype (class Newtype)

newtype N a = N a

derive instance newtypeN :: Newtype (N a) _