aboutsummaryrefslogtreecommitdiff
path: root/hoogle-test/src/Bug722
diff options
context:
space:
mode:
Diffstat (limited to 'hoogle-test/src/Bug722')
-rw-r--r--hoogle-test/src/Bug722/Bug722.hs13
1 files changed, 13 insertions, 0 deletions
diff --git a/hoogle-test/src/Bug722/Bug722.hs b/hoogle-test/src/Bug722/Bug722.hs
new file mode 100644
index 00000000..a33d5b24
--- /dev/null
+++ b/hoogle-test/src/Bug722/Bug722.hs
@@ -0,0 +1,13 @@
+{-# LANGUAGE TypeOperators, TypeFamilies #-}
+module Bug722 where
+
+class Foo a where
+ (!@#) :: a -> a -> a
+infixl 4 !@#
+
+type family (&*) :: * -> * -> *
+infixr 3 &*
+
+data a :-& b = a :^& b
+infixl 6 :-&, :^&
+