[commit: ghc] master: Rename new T9858d to T9858e to avoid test name clash (a55bfab)
git at git.haskell.org
git at git.haskell.org
Wed Apr 22 16:50:15 UTC 2015
Repository : ssh://git@git.haskell.org/ghc
On branch : master
Link : http://ghc.haskell.org/trac/ghc/changeset/a55bfabbed21f17064f863450f9d94d45db9c478/ghc
>---------------------------------------------------------------
commit a55bfabbed21f17064f863450f9d94d45db9c478
Author: Joachim Breitner <mail at joachim-breitner.de>
Date: Wed Apr 22 18:50:00 2015 +0200
Rename new T9858d to T9858e to avoid test name clash
(Next time, when fixing someone else’s mistake, I really shouldn’t do
the precise same thing.)
>---------------------------------------------------------------
a55bfabbed21f17064f863450f9d94d45db9c478
testsuite/tests/typecheck/should_fail/{T9858d.hs => T9858e.hs} | 2 +-
testsuite/tests/typecheck/should_fail/{T9858d.stderr => T9858e.stderr} | 2 +-
testsuite/tests/typecheck/should_fail/all.T | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/testsuite/tests/typecheck/should_fail/T9858d.hs b/testsuite/tests/typecheck/should_fail/T9858e.hs
similarity index 90%
rename from testsuite/tests/typecheck/should_fail/T9858d.hs
rename to testsuite/tests/typecheck/should_fail/T9858e.hs
index dedd71c..0ec39a6 100644
--- a/testsuite/tests/typecheck/should_fail/T9858d.hs
+++ b/testsuite/tests/typecheck/should_fail/T9858e.hs
@@ -1,6 +1,6 @@
{-# LANGUAGE ImpredicativeTypes, FlexibleContexts #-}
-module T9858d where
+module T9858e where
import Data.Typeable
i :: (Typeable a, Typeable b) => Proxy (a b) -> TypeRep
diff --git a/testsuite/tests/typecheck/should_fail/T9858d.stderr b/testsuite/tests/typecheck/should_fail/T9858e.stderr
similarity index 94%
rename from testsuite/tests/typecheck/should_fail/T9858d.stderr
rename to testsuite/tests/typecheck/should_fail/T9858e.stderr
index 9bc62f7..04e0800 100644
--- a/testsuite/tests/typecheck/should_fail/T9858d.stderr
+++ b/testsuite/tests/typecheck/should_fail/T9858e.stderr
@@ -1,5 +1,5 @@
-T9858d.hs:9:8: error:
+T9858e.hs:9:8: error:
Couldn't match type ‘Eq Int => Int’ with ‘a0 b0’
Expected type: Proxy (a0 b0)
Actual type: Proxy (Eq Int => Int)
diff --git a/testsuite/tests/typecheck/should_fail/all.T b/testsuite/tests/typecheck/should_fail/all.T
index 57569b9..abddd3e 100644
--- a/testsuite/tests/typecheck/should_fail/all.T
+++ b/testsuite/tests/typecheck/should_fail/all.T
@@ -358,4 +358,4 @@ test('T10194', normal, compile_fail, [''])
test('T8030', normal, compile_fail, [''])
test('T9858a', normal, compile_fail, [''])
test('T9858b', normal, compile_fail, [''])
-test('T9858d', normal, compile_fail, [''])
+test('T9858e', normal, compile_fail, [''])
More information about the ghc-commits
mailing list