diff options
author | Bartosz Nitka <niteria@gmail.com> | 2016-05-10 07:56:06 -0700 |
---|---|---|
committer | Bartosz Nitka <niteria@gmail.com> | 2016-05-10 07:56:06 -0700 |
commit | ab91b851637437844359bc6e82efff44dfb0c0ea (patch) | |
tree | b1d737f7c1efb3d3d942bfe22c98cea57d4e8da5 /testsuite/tests/ghci.debugger | |
parent | 402f201d617bdd296108b5f6afb17559d97cc7bb (diff) | |
download | haskell-ab91b851637437844359bc6e82efff44dfb0c0ea.tar.gz |
make accept for Make simplifyInstanceContexts deterministic
Making it deterministic changed some error messages and I
forgot to make accept. Relevant change: b58b0e18a568.
Diffstat (limited to 'testsuite/tests/ghci.debugger')
-rw-r--r-- | testsuite/tests/ghci.debugger/scripts/break006.stderr | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/tests/ghci.debugger/scripts/break006.stderr b/testsuite/tests/ghci.debugger/scripts/break006.stderr index 2b43dff8c9..463b66fcbf 100644 --- a/testsuite/tests/ghci.debugger/scripts/break006.stderr +++ b/testsuite/tests/ghci.debugger/scripts/break006.stderr @@ -5,7 +5,7 @@ Use :print or :force to determine these types Relevant bindings include it :: t (bound at <interactive>:4:1) These potential instances exist: - instance (Show a, Show b) => Show (Either a b) + instance (Show b, Show a) => Show (Either a b) -- Defined in ‘Data.Either’ instance Show Ordering -- Defined in ‘GHC.Show’ instance Show Integer -- Defined in ‘GHC.Show’ @@ -20,7 +20,7 @@ Use :print or :force to determine these types Relevant bindings include it :: t (bound at <interactive>:6:1) These potential instances exist: - instance (Show a, Show b) => Show (Either a b) + instance (Show b, Show a) => Show (Either a b) -- Defined in ‘Data.Either’ instance Show Ordering -- Defined in ‘GHC.Show’ instance Show Integer -- Defined in ‘GHC.Show’ |