summaryrefslogtreecommitdiff
path: root/test/files/run/byname.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2011-10-09 19:24:48 +0000
committerPaul Phillips <paulp@improving.org>2011-10-09 19:24:48 +0000
commitbc4468cdd266fc12fe164c1b6ec4da94b71a4129 (patch)
tree4daa2b1a82c17daf9c2f901de953d2fa82ddebe4 /test/files/run/byname.scala
parent2c1a1192ce19f84984eb52037fba5b26794ed3fa (diff)
downloadscala-bc4468cdd266fc12fe164c1b6ec4da94b71a4129.tar.gz
scala-bc4468cdd266fc12fe164c1b6ec4da94b71a4129.tar.bz2
scala-bc4468cdd266fc12fe164c1b6ec4da94b71a4129.zip
Flipped varargs eta-expansion behavior.
(T*)U now eta-expands to Seq[T] => U, not T* => U. There is a transition command line switch to get the old behavior for any who may have relied upon it: -Yeta-expand-keeps-star Closes SI-4176, no review.
Diffstat (limited to 'test/files/run/byname.scala')
-rw-r--r--test/files/run/byname.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/files/run/byname.scala b/test/files/run/byname.scala
index 8aff1ec23f..1325552348 100644
--- a/test/files/run/byname.scala
+++ b/test/files/run/byname.scala
@@ -36,13 +36,13 @@ def testVarargs(x: Int*) = x.reduceLeft((x: Int, y: Int) => x + y)
test("varargs", 4, testVarargs(1, 2, 1))
val testVarargsR = testVarargs _
-test("varargs r", 4, testVarargsR(1, 2, 1))
+test("varargs r", 4, testVarargsR(Seq(1, 2, 1)))
def testAll(x: Int, y: => Int, z: Int*) = x + y + z.size
test("all", 5, testAll(1, 2, 22, 23))
val testAllR = testAll _
-test("all r", 7, testAllR(2, 3, 34, 35))
+test("all r", 7, testAllR(2, 3, Seq(34, 35)))
val testAllS: (Int, =>Int, Int*) => Int = testAll _
test("all s", 8, testAllS(1, 5, 78, 89))
@@ -73,7 +73,7 @@ def testCVV(a: Int*)(z: String, b: Int*) = a.size + b.size
test("cvv", 3, testCVV(1, 2)("", 8))
val testCVVR = testCVV _
-test("cvv r", 3, testCVVR(1)("", 8, 9))
+test("cvv r", 3, testCVVR(Seq(1))("", Seq(8, 9)))
val testCVVRS: (String, Int*) => Int = testCVV(2, 3)
test("cvv rs", 4, testCVVRS("", 5, 6))