summaryrefslogtreecommitdiff
path: root/testsuite/tests/typecheck/should_compile/T3743.hs
blob: fd1b1d14b4422aa2545ac2de4d0898d17b00b8cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{-# OPTIONS_GHC -fno-warn-redundant-constraints #-}
{-# LANGUAGE ImplicitParams, GADTs #-}

module T3743 where

class Foo a

data M where M :: Foo a => a -> M

x :: (?x :: ()) => ()
x = undefined

-- foo :: (?x :: ()) => M -> ()
foo y = case y of
    M _ -> x