summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2018-10-17 15:04:31 -0400
committerBen Gamari <ben@smart-cactus.org>2018-10-17 15:06:08 -0400
commit17b60f18202c9ddeb881a0654e91967506f093f4 (patch)
treea460d280dc88c7101ca53fbd2cda25438175a93e
parent38c28c1a8bb129141e533866700e7318314f32c1 (diff)
downloadhaskell-17b60f18202c9ddeb881a0654e91967506f093f4.tar.gz
testsuite: Fix non-canonical Monoid instance in T3001-2
-rw-r--r--testsuite/tests/profiling/should_run/T3001-2.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/tests/profiling/should_run/T3001-2.hs b/testsuite/tests/profiling/should_run/T3001-2.hs
index 17fa0c9c48..538a435bec 100644
--- a/testsuite/tests/profiling/should_run/T3001-2.hs
+++ b/testsuite/tests/profiling/should_run/T3001-2.hs
@@ -289,5 +289,5 @@ instance Semigroup Builder where
instance Monoid Builder where
mempty = emptyBuilder
- mappend = append
+ mappend = (<>)