summaryrefslogtreecommitdiff
path: root/testsuite/tests/partial-sigs/should_compile/T18008.hs
blob: 5e76173a043a6aa7c6794ab1ed5eb39de39d0f61 (plain)
1
2
3
4
5
6
7
{-# LANGUAGE RankNTypes #-}
{-# LANGUAGE PartialTypeSignatures #-}
module Bug where

f :: (forall a. Show a => a -> String) -> _
f s = s ()