Skip to content

Instantly share code, notes, and snippets.

@dmwit
Created July 24, 2019 01:31
Show Gist options
  • Save dmwit/dfcfda7cb79a14a9ed8084dae61df311 to your computer and use it in GitHub Desktop.
Save dmwit/dfcfda7cb79a14a9ed8084dae61df311 to your computer and use it in GitHub Desktop.
-- Test.hs
{-# LANGUAGE PatternSynonyms #-}
module Test (Foo(Bar,Baz)) where
data Foo = Bar
pattern Baz = Bar
-- whatever-else.hs
import Test (Foo(Baz))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment