summaryrefslogtreecommitdiff
path: root/testsuite/tests/partial-sigs/should_compile/T11016.hs
blob: 02b7d4d3a8600166895ad99ffb8c6836449abf92 (plain)
1
2
3
4
5
6
7
8
9
{-# LANGUAGE ImplicitParams, PartialTypeSignatures #-}

module T11016 where

f1 :: (?x :: Int, _) => Int
f1 = ?x

f2 :: (?x :: Int) => _
f2 = ?x