From: sof Date: Fri, 5 Feb 1999 14:38:05 +0000 (+0000) Subject: [project @ 1999-02-05 14:38:03 by sof] X-Git-Tag: Approximately_9120_patches~6597 X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=33d7924d21d8a65f98cf87acbcf4aba1e992fef4 [project @ 1999-02-05 14:38:03 by sof] Updates --- diff --git a/ghc/tests/deriving/should_compile/drv003.stderr b/ghc/tests/deriving/should_compile/drv003.stderr index c1e0d47..e69de29 100644 --- a/ghc/tests/deriving/should_compile/drv003.stderr +++ b/ghc/tests/deriving/should_compile/drv003.stderr @@ -1,9 +0,0 @@ - -drv003.hs:15: Warning: - No explicit method nor default method for `==' - in an instance declaration for `Eq' - -drv003.hs:12: Warning: - No explicit method nor default method for `==' - in an instance declaration for `Eq' - diff --git a/ghc/tests/deriving/should_compile/drv006.stderr b/ghc/tests/deriving/should_compile/drv006.stderr index 0af03cd..e69de29 100644 --- a/ghc/tests/deriving/should_compile/drv006.stderr +++ b/ghc/tests/deriving/should_compile/drv006.stderr @@ -1 +0,0 @@ -NOTE: Simplifier still going after 4 iterations; baling out. diff --git a/ghc/tests/deriving/should_compile/drv007.stderr b/ghc/tests/deriving/should_compile/drv007.stderr index 0af03cd..e69de29 100644 --- a/ghc/tests/deriving/should_compile/drv007.stderr +++ b/ghc/tests/deriving/should_compile/drv007.stderr @@ -1 +0,0 @@ -NOTE: Simplifier still going after 4 iterations; baling out. diff --git a/ghc/tests/deriving/should_compile/drv011.hs b/ghc/tests/deriving/should_compile/drv011.hs new file mode 100644 index 0000000..bba25f5 --- /dev/null +++ b/ghc/tests/deriving/should_compile/drv011.hs @@ -0,0 +1,6 @@ +-- !!! deriving Enum, but not Ord. +module ShouldSucceed where + +data ABC = A | B | C deriving Enum + +x = [A ..C]