summaryrefslogtreecommitdiff
path: root/testsuite/tests/partial-sigs/should_compile/T16728a.hs
blob: 96d693a192cb668df01b0e268ac375dbe377c722 (plain)
1
2
3
4
5
6
7
8
{-# LANGUAGE ExplicitForAll, PartialTypeSignatures #-}
module Bug where

g,h:: forall a. a -> _
g x = h x

h x = g x