diff options
Diffstat (limited to 'testsuite/tests/deriving')
10 files changed, 10 insertions, 10 deletions
diff --git a/testsuite/tests/deriving/should_compile/T2378.hs b/testsuite/tests/deriving/should_compile/T2378.hs index 4f12313fc0..cd5d35128e 100644 --- a/testsuite/tests/deriving/should_compile/T2378.hs +++ b/testsuite/tests/deriving/should_compile/T2378.hs @@ -1,7 +1,7 @@ {-# LANGUAGE StandaloneDeriving, DeriveDataTypeable #-} module Foo( T ) where --- Trac 2378 +-- #2378 import Data.Data diff --git a/testsuite/tests/deriving/should_compile/T2721.hs b/testsuite/tests/deriving/should_compile/T2721.hs index 916916d250..53a51d3c06 100644 --- a/testsuite/tests/deriving/should_compile/T2721.hs +++ b/testsuite/tests/deriving/should_compile/T2721.hs @@ -1,6 +1,6 @@ {-# LANGUAGE TypeFamilies, GeneralizedNewtypeDeriving #-} {-# LANGUAGE UndecidableInstances #-} --- Trac #2721 +-- #2721 module T2721 where diff --git a/testsuite/tests/deriving/should_compile/T2856.hs b/testsuite/tests/deriving/should_compile/T2856.hs index fc309585fe..0e91e4e747 100644 --- a/testsuite/tests/deriving/should_compile/T2856.hs +++ b/testsuite/tests/deriving/should_compile/T2856.hs @@ -1,7 +1,7 @@ {-# OPTIONS -fno-warn-redundant-constraints #-} {-# LANGUAGE TypeFamilies, GeneralizedNewtypeDeriving, StandaloneDeriving, FlexibleInstances #-} --- Test Trac #2856 +-- Test #2856 module T2856 where diff --git a/testsuite/tests/deriving/should_compile/all.T b/testsuite/tests/deriving/should_compile/all.T index 5aa102b871..23f152e195 100644 --- a/testsuite/tests/deriving/should_compile/all.T +++ b/testsuite/tests/deriving/should_compile/all.T @@ -39,7 +39,7 @@ test('drv-foldable-traversable1', normal, compile, ['']) test('deriving-via-compile', normal, compile, ['']) test('deriving-via-standalone', normal, compile, ['']) test('T6031', [], multimod_compile, ['T6031', '-v0 -O']) -# Adding -O on T6031 to expose Trac #11245 regardless of way +# Adding -O on T6031 to expose #11245 regardless of way test('T1133', [], makefile_test, []) test('T7704', normal, compile, ['']) test('T7710', normal, compile, ['']) diff --git a/testsuite/tests/deriving/should_compile/deriving-1935.hs b/testsuite/tests/deriving/should_compile/deriving-1935.hs index 8bccd58182..add1f73590 100644 --- a/testsuite/tests/deriving/should_compile/deriving-1935.hs +++ b/testsuite/tests/deriving/should_compile/deriving-1935.hs @@ -1,6 +1,6 @@ {-# OPTIONS_GHC -XDeriveDataTypeable #-} --- Trac #1935 +-- #1935 -- See Note [Superclasses of derived instance] in TcDeriv {-# OPTIONS -fno-warn-redundant-constraints #-} diff --git a/testsuite/tests/deriving/should_compile/drv012.hs b/testsuite/tests/deriving/should_compile/drv012.hs index 1d07a4ee96..c7e696fa49 100644 --- a/testsuite/tests/deriving/should_compile/drv012.hs +++ b/testsuite/tests/deriving/should_compile/drv012.hs @@ -1,7 +1,7 @@ {-# LANGUAGE GADTs #-} -- !!! deriving for GADTs which declare Haskell98 data types. --- bug reported as http://ghc.haskell.org/trac/ghc/ticket/902 +-- bug reported as https://gitlab.haskell.org/ghc/ghc/issues/902 module ShouldSucceed where data Maybe1 a where { diff --git a/testsuite/tests/deriving/should_fail/T2394.hs b/testsuite/tests/deriving/should_fail/T2394.hs index 6e62bc364e..32cbe0edcc 100644 --- a/testsuite/tests/deriving/should_fail/T2394.hs +++ b/testsuite/tests/deriving/should_fail/T2394.hs @@ -1,6 +1,6 @@ {-# OPTIONS_GHC -XDeriveDataTypeable -XStandaloneDeriving #-} --- Test Trac #2394 +-- Test #2394 module Foo where diff --git a/testsuite/tests/deriving/should_fail/T2851.hs b/testsuite/tests/deriving/should_fail/T2851.hs index bc7239af0a..9973780760 100644 --- a/testsuite/tests/deriving/should_fail/T2851.hs +++ b/testsuite/tests/deriving/should_fail/T2851.hs @@ -1,5 +1,5 @@ {-# LANGUAGE TypeFamilies #-} --- Test Trac #2851 +-- Test #2851 module T2851 where diff --git a/testsuite/tests/deriving/should_fail/drvfail012.hs b/testsuite/tests/deriving/should_fail/drvfail012.hs index 4a073bbed1..e2bedc7abf 100644 --- a/testsuite/tests/deriving/should_fail/drvfail012.hs +++ b/testsuite/tests/deriving/should_fail/drvfail012.hs @@ -1,4 +1,4 @@ --- Trac #1608 +-- #1608 module ShouldFail where diff --git a/testsuite/tests/deriving/should_run/T2529.hs b/testsuite/tests/deriving/should_run/T2529.hs index d3c3a4b0a3..c818c3697c 100644 --- a/testsuite/tests/deriving/should_run/T2529.hs +++ b/testsuite/tests/deriving/should_run/T2529.hs @@ -1,4 +1,4 @@ --- Trac #2529 +-- #2529 -- The example below successfully performed the {{{show}}}, but {{{reads}}} -- returns an empty list. It fails in both GHCi and GHC. It succeeds if you -- replaces the infix symbol with a name. |