[project @ 2001-04-17 06:14:59 by lewie]
[ghc-hetmet.git] / ghc / tests / typecheck / should_compile / tc124.hs
1 -- !!! Parallel list comprehensions w/ parallel lets
2
3 module ShouldCompile where
4
5 xys = [ (x, y) | let a = 13, x <- [a .. 19] | let a = 17, y <- [a .. 23] ]