aboutsummaryrefslogtreecommitdiff
path: root/html-test/src/Bug1067A.hs
diff options
context:
space:
mode:
Diffstat (limited to 'html-test/src/Bug1067A.hs')
-rw-r--r--html-test/src/Bug1067A.hs9
1 files changed, 9 insertions, 0 deletions
diff --git a/html-test/src/Bug1067A.hs b/html-test/src/Bug1067A.hs
new file mode 100644
index 00000000..57ab60b0
--- /dev/null
+++ b/html-test/src/Bug1067A.hs
@@ -0,0 +1,9 @@
+{-# language PatternSynonyms #-}
+module Bug1067A ( Foo(P) ) where
+
+-- | A foo
+data Foo = Foo
+
+-- | A pattern
+pattern P :: Foo
+pattern P = Foo