summaryrefslogtreecommitdiff
path: root/testsuite/tests/typecheck/should_fail/T12973.hs
blob: a21ed1a0c1427831dd76c75f438387d7f67b3e57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{-# LANGUAGE RebindableSyntax, TypeInType, ExplicitForAll #-}

module T12973 where

import qualified Prelude as P
import GHC.Exts

class Num (a :: TYPEvis r) where
  (+) :: a -> a -> a
  fromInteger :: P.Integer -> a

foo :: forall (a :: TYPEvis r). Num a => a
foo = 3 + 4