summaryrefslogtreecommitdiff
path: root/test/files/run/t5009.check
diff options
context:
space:
mode:
authorLukas Rytz <lukas.rytz@epfl.ch>2012-05-11 16:00:54 +0200
committerLukas Rytz <lukas.rytz@epfl.ch>2012-05-11 16:06:37 +0200
commit40e7cab7a22a8531bdd310bfb57fda51b798c690 (patch)
treebaf453e3316e46b17c7e1f1a1e58ce31eb1b1763 /test/files/run/t5009.check
parent2422b064e7a52c04dfb2239fc8e7b9ffbab24251 (diff)
downloadscala-40e7cab7a22a8531bdd310bfb57fda51b798c690.tar.gz
scala-40e7cab7a22a8531bdd310bfb57fda51b798c690.tar.bz2
scala-40e7cab7a22a8531bdd310bfb57fda51b798c690.zip
Fix SI-5009: case-class copy method now eta-expands over higher parameter lists.
Example: Given case class C(a: Int)(b: Int) if you call (new C(1)(2)).copy(a = 10)), you get a function (f: Int => C) such that (f.apply(20)) yields a (new C(10)(20)).
Diffstat (limited to 'test/files/run/t5009.check')
-rw-r--r--test/files/run/t5009.check4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/files/run/t5009.check b/test/files/run/t5009.check
new file mode 100644
index 0000000000..cc9df54b34
--- /dev/null
+++ b/test/files/run/t5009.check
@@ -0,0 +1,4 @@
+C(1,true)
+10
+C(7283,20)
+100