diff options
Diffstat (limited to 'hoogle-test/src/fixity/Fixity.hs')
-rw-r--r-- | hoogle-test/src/fixity/Fixity.hs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/hoogle-test/src/fixity/Fixity.hs b/hoogle-test/src/fixity/Fixity.hs new file mode 100644 index 00000000..3af38117 --- /dev/null +++ b/hoogle-test/src/fixity/Fixity.hs @@ -0,0 +1,12 @@ +module Fixity where + + +(+++), (***), (///) :: a -> a -> a +(+++) = undefined +(***) = undefined +(///) = undefined + + +infix 6 +++ +infixl 7 *** +infixr 8 /// |