diff options
author | Ben Gamari <ben@smart-cactus.org> | 2018-10-17 15:04:31 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2018-10-17 15:06:08 -0400 |
commit | 17b60f18202c9ddeb881a0654e91967506f093f4 (patch) | |
tree | a460d280dc88c7101ca53fbd2cda25438175a93e /testsuite/tests/profiling | |
parent | 38c28c1a8bb129141e533866700e7318314f32c1 (diff) | |
download | haskell-17b60f18202c9ddeb881a0654e91967506f093f4.tar.gz |
testsuite: Fix non-canonical Monoid instance in T3001-2
Diffstat (limited to 'testsuite/tests/profiling')
-rw-r--r-- | testsuite/tests/profiling/should_run/T3001-2.hs | 2 |
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 = (<>) |