summaryrefslogtreecommitdiff
path: root/testsuite/tests/typecheck/should_fail/T17563.hs
blob: 2017db4877b84ab2364e3f0c49339e29f57c3204 (plain)
1
2
3
4
5
6
7
8
9
{-# LANGUAGE Haskell2010 #-}
{-# LANGUAGE QuantifiedConstraints #-}

module T17563 where

data T a b

blah :: (forall x. Num (T a x)) => T a b
blah = 0