summaryrefslogtreecommitdiff
path: root/test/files/neg
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan.moors@typesafe.com>2013-03-29 15:04:19 -0700
committerAdriaan Moors <adriaan.moors@typesafe.com>2013-03-29 15:04:19 -0700
commit7894c1b24fddc91fbec53a9906e3c8b8e8a4e61a (patch)
tree85dfdc66f525702e414cb7cd3833fe579301cad7 /test/files/neg
parent1debc74374e9c3de52d1333b695db61e7a69a57b (diff)
parent844cef628c809de24d908b9a51760ff33d0db345 (diff)
downloadscala-7894c1b24fddc91fbec53a9906e3c8b8e8a4e61a.tar.gz
scala-7894c1b24fddc91fbec53a9906e3c8b8e8a4e61a.tar.bz2
scala-7894c1b24fddc91fbec53a9906e3c8b8e8a4e61a.zip
Merge pull request #2305 from retronym/ticket/7296-2
SI-7296 Lifting the limit on case class arity
Diffstat (limited to 'test/files/neg')
-rw-r--r--test/files/neg/t3631.check4
-rw-r--r--test/files/neg/t3631.scala3
2 files changed, 0 insertions, 7 deletions
diff --git a/test/files/neg/t3631.check b/test/files/neg/t3631.check
deleted file mode 100644
index 6d8feca1ed..0000000000
--- a/test/files/neg/t3631.check
+++ /dev/null
@@ -1,4 +0,0 @@
-t3631.scala:3: error: Implementation restriction: case classes cannot have more than 22 parameters.
-case class X23(x1: Int, x2: Int, x3: Int, x4: Int, x5: Int, x6: Int, x7: Int, x8: Int, x9: Int, x10: Int, x11: Int, x12: Int, x13: Int, x14: Int, x15: Int, x16: Int, x17: Int, x18: Int, x19: Int, x20: Int, x21: Int, x22: Int, x23: Int) { }
- ^
-one error found
diff --git a/test/files/neg/t3631.scala b/test/files/neg/t3631.scala
deleted file mode 100644
index bcf91619ee..0000000000
--- a/test/files/neg/t3631.scala
+++ /dev/null
@@ -1,3 +0,0 @@
-case class X22(x1: Int, x2: Int, x3: Int, x4: Int, x5: Int, x6: Int, x7: Int, x8: Int, x9: Int, x10: Int, x11: Int, x12: Int, x13: Int, x14: Int, x15: Int, x16: Int, x17: Int, x18: Int, x19: Int, x20: Int, x21: Int, x22: Int) { }
-
-case class X23(x1: Int, x2: Int, x3: Int, x4: Int, x5: Int, x6: Int, x7: Int, x8: Int, x9: Int, x10: Int, x11: Int, x12: Int, x13: Int, x14: Int, x15: Int, x16: Int, x17: Int, x18: Int, x19: Int, x20: Int, x21: Int, x22: Int, x23: Int) { } \ No newline at end of file