summaryrefslogtreecommitdiff
path: root/testsuite/tests/typecheck/should_compile/T16033.hs
blob: 09be024af40b955383e483d952dfc5021fbfd3b1 (plain)
1
2
3
4
5
6
7
{-# LANGUAGE GADTs #-}
{-# LANGUAGE RankNTypes #-}
{-# LANGUAGE ScopedTypeVariables #-}
module T16033 where

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