packages feed

haskell-debugger-0.13.0.0: test/golden/T237/lib/MyType.hs

module MyType
  ( MyType(..)
  , mkValue
  ) where

newtype MyType = MyType [String]
  deriving Show

mkValue :: MyType
mkValue = MyType ["alpha", "beta", "gamma"]
{-# OPAQUE mkValue #-}