summaryrefslogtreecommitdiff
path: root/testsuite/tests/typecheck/should_compile/tc146.hs
blob: bc5006998385e78475721cb0be5cb0219af02f97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{-# LANGUAGE RankNTypes #-}

-- The interesting thign about this one is that
-- there's an unbound type variable of kind *->*
-- that the typechecker should default to some 
-- arbitrary type.
--
-- GHC 5.02 could only really deal with such things
-- of kind *, but 5.03 extended that to *->..->*
-- Still not complete, but a lot better.

module ShouldCompile where

f :: (forall a b . a b -> int) -> (forall c . c int) -> int 
f x y = x y