summaryrefslogtreecommitdiff
path: root/testsuite/tests/typecheck/should_fail/ExplicitSpecificity5.hs
blob: 2788f952fe67857da7598f9d30b831271326530e (plain)
1
2
3
4
5
6
7
8
{-# LANGUAGE ScopedTypeVariables #-}

module ExplicitSpecificity5 where

class C a where

instance forall {a} {b}. C (Either a b) where