summaryrefslogtreecommitdiff
path: root/test/files
diff options
context:
space:
mode:
authorAntonio Cunei <antonio.cunei@epfl.ch>2010-09-29 13:55:04 +0000
committerAntonio Cunei <antonio.cunei@epfl.ch>2010-09-29 13:55:04 +0000
commit5f4a754228beeb302994e5597e6d93cf2a0e39e3 (patch)
tree490df79f19b9293cb10c16a03d56f3acad17cbbe /test/files
parent5b79a0442369d55094244e08f8a2c8c2ff117007 (diff)
downloadscala-5f4a754228beeb302994e5597e6d93cf2a0e39e3.tar.gz
scala-5f4a754228beeb302994e5597e6d93cf2a0e39e3.tar.bz2
scala-5f4a754228beeb302994e5597e6d93cf2a0e39e3.zip
Merged revisions 23127-23128,23139,23141 via sv...
Merged revisions 23127-23128,23139,23141 via svnmerge from https://lampsvn.epfl.ch/svn-repos/scala/scala/trunk ........ r23127 | moors | 2010-09-28 17:46:36 +0200 (Tue, 28 Sep 2010) | 3 lines closes #3865: scaladoc now prints anonymous type functions since they may occur due to normalization of type constructor arguments of inferred types review by dubochet ........ r23128 | moors | 2010-09-28 17:46:41 +0200 (Tue, 28 Sep 2010) | 3 lines closes #3859. need to instantiate type parameters to nothing explicitly in manifestOfType's searchresult rather than relying on later calls to instantiate. review by odersky ........ r23139 | odersky | 2010-09-29 11:57:49 +0200 (Wed, 29 Sep 2010) | 1 line Closes #3875. Review by vigdorchick. ........ r23141 | odersky | 2010-09-29 15:42:47 +0200 (Wed, 29 Sep 2010) | 1 line Changed Response so that get does what it did before, and get(TIMEOUT) returns provisional results if it can. Review by vigdorchick. ........
Diffstat (limited to 'test/files')
-rw-r--r--test/files/pos/t3859.scala4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/files/pos/t3859.scala b/test/files/pos/t3859.scala
new file mode 100644
index 0000000000..83d4c37b29
--- /dev/null
+++ b/test/files/pos/t3859.scala
@@ -0,0 +1,4 @@
+class Test {
+ def foo: Unit = bar(Array(): _*)
+ def bar(values: AnyRef*): Unit = ()
+} \ No newline at end of file