diff options
Diffstat (limited to 'testsuite/tests/generics/GShow/GShow.hs')
-rw-r--r-- | testsuite/tests/generics/GShow/GShow.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/tests/generics/GShow/GShow.hs b/testsuite/tests/generics/GShow/GShow.hs index 6cdda282d8..cfe0230411 100644 --- a/testsuite/tests/generics/GShow/GShow.hs +++ b/testsuite/tests/generics/GShow/GShow.hs @@ -3,9 +3,9 @@ {-# LANGUAGE FlexibleInstances #-} {-# LANGUAGE FlexibleContexts #-} {-# LANGUAGE TypeOperators #-} -{-# LANGUAGE IncoherentInstances #-} -- :-/ {-# LANGUAGE DefaultSignatures #-} {-# LANGUAGE MagicHash #-} +{-# LANGUAGE PolyKinds #-} module GShow ( -- * Generic show class @@ -134,5 +134,5 @@ instance (GShow a) => GShow [a] where (intersperse (showChar ',') (map (gshowsPrec 0) l)) . showChar ']' -instance (GShow a) => GShow (Maybe a) +instance (GShow a) => GShow (Maybe a) instance (GShow a, GShow b) => GShow (a,b) |