From a55bfabbed21f17064f863450f9d94d45db9c478 Mon Sep 17 00:00:00 2001
From: Joachim Breitner <mail@joachim-breitner.de>
Date: Wed, 22 Apr 2015 18:50:00 +0200
Subject: [PATCH] Rename new T9858d to T9858e to avoid test name clash
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

(Next time, when fixing someone else’s mistake, I really shouldn’t do
the precise same thing.)
---
 testsuite/tests/typecheck/should_fail/{T9858d.hs => T9858e.hs}  | 2 +-
 .../typecheck/should_fail/{T9858d.stderr => T9858e.stderr}      | 2 +-
 testsuite/tests/typecheck/should_fail/all.T                     | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)
 rename testsuite/tests/typecheck/should_fail/{T9858d.hs => T9858e.hs} (90%)
 rename testsuite/tests/typecheck/should_fail/{T9858d.stderr => T9858e.stderr} (94%)

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 dedd71c7af50..0ec39a696bc9 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 9bc62f7a9a94..04e08000caaa 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 57569b9c11c2..abddd3e6b5da 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, [''])
-- 
GitLab