summaryrefslogtreecommitdiff
path: root/test/files/pos
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/pos
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/pos')
-rw-r--r--test/files/pos/t3631.scala3
-rw-r--r--test/files/pos/t7296.scala6
2 files changed, 9 insertions, 0 deletions
diff --git a/test/files/pos/t3631.scala b/test/files/pos/t3631.scala
new file mode 100644
index 0000000000..bcf91619ee
--- /dev/null
+++ b/test/files/pos/t3631.scala
@@ -0,0 +1,3 @@
+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
diff --git a/test/files/pos/t7296.scala b/test/files/pos/t7296.scala
new file mode 100644
index 0000000000..0c078d3657
--- /dev/null
+++ b/test/files/pos/t7296.scala
@@ -0,0 +1,6 @@
+object Test {
+ type A = Int
+ // Emits the implementation restriction but then proceeds to crash
+ // when creating the Foo.unapply.
+ case class Foo(a: A, b: A, c: A, d: A, e: A, f: A, g: A, h: A, i: A, j: A, k: A, l: A, m: A, n: A, o: A, p: A, q: A, r: A, s: A, t: A, u: A, v: A, w: A, x: A, y: A, Z: A)
+}