aboutsummaryrefslogtreecommitdiff
path: root/html-test/src/Bug1067A.hs
blob: 57ab60b07456823b49599a6a396f7beeccc37bdc (plain) (blame)
1
2
3
4
5
6
7
8
9
{-# language PatternSynonyms #-}
module Bug1067A ( Foo(P) ) where

-- | A foo
data Foo = Foo

-- | A pattern
pattern P :: Foo
pattern P = Foo