summaryrefslogtreecommitdiff
path: root/testsuite/tests/printer/Ppr037.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/printer/Ppr037.hs')
-rw-r--r--testsuite/tests/printer/Ppr037.hs5
1 files changed, 3 insertions, 2 deletions
diff --git a/testsuite/tests/printer/Ppr037.hs b/testsuite/tests/printer/Ppr037.hs
index 1ece4394f9..30893a9e1e 100644
--- a/testsuite/tests/printer/Ppr037.hs
+++ b/testsuite/tests/printer/Ppr037.hs
@@ -34,8 +34,9 @@ import Data.Type.Equality
-- | The promoted analogue of 'Eq'. If you supply no definition for '(:==)',
-- then it defaults to a use of '(==)', from @Data.Type.Equality@.
class kproxy ~ 'KProxy => PEq (kproxy :: KProxy a) where
- type (:==) (x :: a) (y :: a) :: Bool
- type (:/=) (x :: a) (y :: a) :: Bool
+ type (:==) (x :: a) ( y :: a) :: Bool
+ type (:/=) ( (x :: a) ) (y :: a ) :: Bool
+ type {- a -} ({- b -}:/:{- c -}) {- d -} ({- e -}x {- f -} :: {- g -} a {- h -}) {- i -} ({- j -}y {- k -}::{- l -} a{- m -}){- n -} ::{- o -} Bool {- p -}
type (x :: a) :== (y :: a) = x == y
type (x :: a) :/= (y :: a) = Not (x :== y)