[project @ 1998-12-02 13:17:09 by simonm]
[ghc-hetmet.git] / ghc / interpreter / test / typechecker / t011.hs
1 --!!! Escaping existential variable II
2
3 data Appl = MkAppl (a -> Int) a (a -> a)
4
5 bad3 y              = let g (MkAppl f x i) = length [x,y] + 1
6                       in  True