summaryrefslogtreecommitdiff
path: root/testsuite/tests/quantified-constraints/T15359.hs
blob: ca84c0e8be903b87f972de93b90d06b43c32e85b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{-# LANGUAGE Haskell2010 #-}
{-# LANGUAGE MultiParamTypeClasses, GADTs, RankNTypes,
             ConstraintKinds, QuantifiedConstraints, TypeOperators #-}

module T15359 where

class C a b

data Dict c where
  Dict :: c => Dict c

foo :: (forall a b. C a b => a ~ b) => Dict (C a b) -> a -> b
foo Dict x = x