[project @ 1999-01-23 17:57:35 by sof]
[ghc-hetmet.git] / ghc / tests / typecheck / should_compile / tc076.hs
1 -- !!! scoping in list comprehensions right way 'round?
2 -- a bug reported by Jon Hill
3 --
4 module ShouldSucceed where
5
6 x = [[True]]
7 xs :: [Bool]
8 xs = [x | x <- x, x <- x]