diff options
Diffstat (limited to 'testsuite/tests/quantified-constraints/T15334.hs')
-rw-r--r-- | testsuite/tests/quantified-constraints/T15334.hs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/testsuite/tests/quantified-constraints/T15334.hs b/testsuite/tests/quantified-constraints/T15334.hs new file mode 100644 index 0000000000..88d7c3f376 --- /dev/null +++ b/testsuite/tests/quantified-constraints/T15334.hs @@ -0,0 +1,9 @@ +{-# LANGUAGE MultiParamTypeClasses, PolyKinds, QuantifiedConstraints, RankNTypes #-} + +module T15334 where + +class C m a +class D m a + +f :: (forall a. Eq a => (C m a, D m a)) => m a +f = undefined |