aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2017-01-31 17:45:09 +1100
committerMartin Odersky <odersky@gmail.com>2017-01-31 17:45:19 +1100
commit62810e0ba681224c8288470a27e816b05769f01a (patch)
treee138034f9b140f83a58ea5cdc690f2ad92aef5b9 /tests
parentd087448fdffff8f64a23d9db39445455cddc2fc6 (diff)
downloaddotty-62810e0ba681224c8288470a27e816b05769f01a.tar.gz
dotty-62810e0ba681224c8288470a27e816b05769f01a.tar.bz2
dotty-62810e0ba681224c8288470a27e816b05769f01a.zip
Fix #1915 Synthetic function traits need NoInits flag
Fixes #1915.
Diffstat (limited to 'tests')
-rw-r--r--tests/run/i1915.scala9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/run/i1915.scala b/tests/run/i1915.scala
new file mode 100644
index 000000000..ee192f6fe
--- /dev/null
+++ b/tests/run/i1915.scala
@@ -0,0 +1,9 @@
+object Test {
+ def main(args: Array[String]) = {
+ assert(new IntFunction26().apply(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26) == 42)
+ }
+}
+
+class IntFunction26 extends Function26[Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int] {
+ def apply(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, x24: Int, x25: Int, x26: Int) = 42
+}