aboutsummaryrefslogtreecommitdiff
path: root/hoogle-test/src/fixity/Fixity.hs
blob: 122bd4f8b42e2811ab4866274ab0f30a1388491c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{-# LANGUAGE Haskell2010 #-}
module Fixity where


(+++), (***), (///) :: a -> a -> a
(+++) = undefined
(***) = undefined
(///) = undefined


infix 6 +++
infixl 7 ***
infixr 8 ///