diff options
author | Ian Lynagh <igloo@earth.li> | 2009-11-24 00:16:58 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2009-11-24 00:16:58 +0000 |
commit | 98ec6b9196b60b87554ca0d0efe4cebb9eeb754f (patch) | |
tree | b4d5cb29467dd522ec97b600eed6817fc4c24196 /testsuite/tests/ghc-regress/ghci | |
parent | e337ffde70fe041e6ba258df4f3c0b55fc1c7927 (diff) | |
download | haskell-98ec6b9196b60b87554ca0d0efe4cebb9eeb754f.tar.gz |
Follow changes in ghci011
Diffstat (limited to 'testsuite/tests/ghc-regress/ghci')
-rw-r--r-- | testsuite/tests/ghc-regress/ghci/scripts/ghci011.stdout | 12 |
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 |