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

module Bug where

f :: Eq [a] => a -> _
f x = [x] == [x]

-- See Note [Constraints in partial type signatures] in
-- GHC.Tc.Solver, in particular the bullet about (P2).