packages feed

ghc-exactprint-0.5.0.0: tests/examples/ghc8/export-type.hs

{-# LANGUAGE PatternSynonyms #-}

module Export (A(..,MyB), B(MyA)) where

data A = A

data B = B

pattern MyB = B

pattern MyA = A