diff options
Diffstat (limited to 'testsuite/tests/annotations/should_fail/annfail06.hs')
-rw-r--r-- | testsuite/tests/annotations/should_fail/annfail06.hs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/testsuite/tests/annotations/should_fail/annfail06.hs b/testsuite/tests/annotations/should_fail/annfail06.hs index 1362f1956e..6fc5ae2cf2 100644 --- a/testsuite/tests/annotations/should_fail/annfail06.hs +++ b/testsuite/tests/annotations/should_fail/annfail06.hs @@ -11,8 +11,8 @@ import Data.Typeable deriving instance Typeable InstancesInWrongModule instance Data InstancesInWrongModule where - gfoldl = undefined - gunfold = undefined + gfoldl k z = undefined + gunfold k z = undefined {-# ANN module InstancesInWrongModule #-} @@ -20,4 +20,4 @@ instance Data InstancesInWrongModule where data Foo = Bar {-# ANN f InstancesInWrongModule #-} -f x = x
\ No newline at end of file +f x = x |