haddock-2.13.2: html-test/src/Bug8.hs
module Bug8 where
infix -->
infix --->
data Typ = Type (String,[Typ])
| TFree (String, [String])
x --> y = Type("fun",[s,t])
(--->) = flip $ foldr (-->)
s = undefined
t = undefined
main = undefined
module Bug8 where
infix -->
infix --->
data Typ = Type (String,[Typ])
| TFree (String, [String])
x --> y = Type("fun",[s,t])
(--->) = flip $ foldr (-->)
s = undefined
t = undefined
main = undefined