summaryrefslogtreecommitdiff
path: root/testsuite/tests/rename/should_fail
diff options
context:
space:
mode:
authorGHC GitLab CI <ghc-ci@gitlab-haskell.org>2020-09-26 12:56:01 +0000
committerMarge Bot <ben+marge-bot@smart-cactus.org>2020-10-15 21:57:50 -0400
commit6b14c4185ca944295d5cfa60ebc6f7ab2a257fc9 (patch)
tree98cca4a3717174bd0b66d06a5cbf08362ec6b206 /testsuite/tests/rename/should_fail
parent998803dc4dbceb36074644483e11e6183fa5355a (diff)
downloadhaskell-6b14c4185ca944295d5cfa60ebc6f7ab2a257fc9.tar.gz
Extend mAX_TUPLE_SIZE to 64
As well a ctuples and sums.
Diffstat (limited to 'testsuite/tests/rename/should_fail')
-rw-r--r--testsuite/tests/rename/should_fail/T6148.hs8
-rw-r--r--testsuite/tests/rename/should_fail/T6148.stderr12
2 files changed, 10 insertions, 10 deletions
diff --git a/testsuite/tests/rename/should_fail/T6148.hs b/testsuite/tests/rename/should_fail/T6148.hs
index 47f8bfe765..6b0b05bb36 100644
--- a/testsuite/tests/rename/should_fail/T6148.hs
+++ b/testsuite/tests/rename/should_fail/T6148.hs
@@ -1,15 +1,15 @@
module T6148 where
a = (0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0)
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0)
-b = (,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,)
+b = (,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,)
data T = T
-c :: (,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,)
+c :: (,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,)
T T T T T T T T T T T T T T T T T T T T T T T T T T T T T T
T T T T T T T T T T T T T T T T T T T T T T T T T T T T T T
- T T T
+ T T T T T
c = c
diff --git a/testsuite/tests/rename/should_fail/T6148.stderr b/testsuite/tests/rename/should_fail/T6148.stderr
index 52e3e83192..0e0df64113 100644
--- a/testsuite/tests/rename/should_fail/T6148.stderr
+++ b/testsuite/tests/rename/should_fail/T6148.stderr
@@ -1,15 +1,15 @@
T6148.hs:3:5:
- A 63-tuple is too large for GHC
- (max size is 62)
+ A 65-tuple is too large for GHC
+ (max size is 64)
Workaround: use nested tuples or define a data type
T6148.hs:7:5:
- A 63-tuple is too large for GHC
- (max size is 62)
+ A 65-tuple is too large for GHC
+ (max size is 64)
Workaround: use nested tuples or define a data type
T6148.hs:11:6:
- A 63-tuple is too large for GHC
- (max size is 62)
+ A 65-tuple is too large for GHC
+ (max size is 64)
Workaround: use nested tuples or define a data type