blob: e569b01dc523557661af8e12b947e5c0c3941960 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
module Bug8 where
infix -->
infix --->
data Typ = Type (Typ,[Typ])
| TFree (Typ, [Typ])
x --> y = Type(s,[s,t])
(--->) = flip $ foldr (-->)
s = undefined
t = undefined
main = undefined
|