summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghc-regress/ghci/scripts/ghci011.stdout
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/ghc-regress/ghci/scripts/ghci011.stdout')
-rw-r--r--testsuite/tests/ghc-regress/ghci/scripts/ghci011.stdout12
1 files changed, 6 insertions, 6 deletions
diff --git a/testsuite/tests/ghc-regress/ghci/scripts/ghci011.stdout b/testsuite/tests/ghc-regress/ghci/scripts/ghci011.stdout
index fd8727ae96..4ca6c8fb38 100644
--- a/testsuite/tests/ghc-regress/ghci/scripts/ghci011.stdout
+++ b/testsuite/tests/ghc-regress/ghci/scripts/ghci011.stdout
@@ -1,21 +1,21 @@
data [] a = [] | a : [a] -- Defined in GHC.Types
-instance (Eq a) => Eq [a] -- Defined in GHC.Base
+instance (Eq a) => Eq [a] -- Defined in GHC.Classes
instance Monad [] -- Defined in GHC.Base
instance Functor [] -- Defined in GHC.Base
-instance (Ord a) => Ord [a] -- Defined in GHC.Base
+instance (Ord a) => Ord [a] -- Defined in GHC.Classes
instance (Read a) => Read [a] -- Defined in GHC.Read
instance (Show a) => Show [a] -- Defined in GHC.Show
data () = () -- Defined in GHC.Unit
instance Bounded () -- Defined in GHC.Enum
instance Enum () -- Defined in GHC.Enum
-instance Eq () -- Defined in Data.Tuple
-instance Ord () -- Defined in Data.Tuple
+instance Eq () -- Defined in GHC.Classes
+instance Ord () -- Defined in GHC.Classes
instance Read () -- Defined in GHC.Read
instance Show () -- Defined in GHC.Show
data (,) a b = (,) a b -- Defined in GHC.Tuple
instance (Bounded a, Bounded b) => Bounded (a, b)
-- Defined in GHC.Enum
-instance (Eq a, Eq b) => Eq (a, b) -- Defined in Data.Tuple
-instance (Ord a, Ord b) => Ord (a, b) -- Defined in Data.Tuple
+instance (Eq a, Eq b) => Eq (a, b) -- Defined in GHC.Classes
+instance (Ord a, Ord b) => Ord (a, b) -- Defined in GHC.Classes
instance (Read a, Read b) => Read (a, b) -- Defined in GHC.Read
instance (Show a, Show b) => Show (a, b) -- Defined in GHC.Show