haskell-names-0.3.2: tests/annotations/ListComp.hs
module ListComp where
a b = [ (x,y,z,t)
| x <- b
, y <- x
, let t = y
, y <- y
, t
, x
, z <- x
]
module ListComp where
a b = [ (x,y,z,t)
| x <- b
, y <- x
, let t = y
, y <- y
, t
, x
, z <- x
]