[project @ 1996-01-08 20:28:12 by partain]
[ghc-hetmet.git] / ghc / compiler / tests / typecheck / should_succeed / 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]