Repository : ssh://darcs.haskell.org//srv/darcs/testsuite On branch : master
http://hackage.haskell.org/trac/ghc/changeset/497352abd4edac524bc8fd1716ffc323aeee282e >--------------------------------------------------------------- commit 497352abd4edac524bc8fd1716ffc323aeee282e Author: Simon Marlow <[email protected]> Date: Tue Jun 28 10:41:14 2011 +0100 remove datatype context >--------------------------------------------------------------- tests/ghc-regress/profiling/should_compile/2410.hs | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/ghc-regress/profiling/should_compile/2410.hs b/tests/ghc-regress/profiling/should_compile/2410.hs index 2248f69..5c56e82 100644 --- a/tests/ghc-regress/profiling/should_compile/2410.hs +++ b/tests/ghc-regress/profiling/should_compile/2410.hs @@ -1,7 +1,7 @@ -{-# OPTIONS_GHC -fno-warn-missing-methods #-} +{-# OPTIONS_GHC -fno-warn-missing-methods -fno-warn-deprecations #-} module C where - data RealFloat a => Complex a = !a :+ !a + data Complex a = !a :+ !a deriving (Eq, Show) instance (RealFloat a) => Num (Complex a) where _______________________________________________ Cvs-ghc mailing list [email protected] http://www.haskell.org/mailman/listinfo/cvs-ghc
