summaryrefslogtreecommitdiff
path: root/test/files/run/bug4592.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2011-08-06 19:34:49 +0000
committerPaul Phillips <paulp@improving.org>2011-08-06 19:34:49 +0000
commit990fa046e6bbe95d5def208b38fead77d2437f9f (patch)
treecaed0b83c9d4220f4ebe48ab844a8c41884df45d /test/files/run/bug4592.scala
parentead69ed24557ff42966a2bd5f71b6434ac5343b6 (diff)
downloadscala-990fa046e6bbe95d5def208b38fead77d2437f9f.tar.gz
scala-990fa046e6bbe95d5def208b38fead77d2437f9f.tar.bz2
scala-990fa046e6bbe95d5def208b38fead77d2437f9f.zip
Fixed bug in the disambiguation of f(foo='bar')...
Fixed bug in the disambiguation of f(foo='bar') style method calls in the presence of overloading, parameterization, and by-name arguments. Took the opportunity to clean things up a little bit. Closes SI-4592, review by rytz.
Diffstat (limited to 'test/files/run/bug4592.scala')
-rw-r--r--test/files/run/bug4592.scala10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/files/run/bug4592.scala b/test/files/run/bug4592.scala
new file mode 100644
index 0000000000..d1666d84d7
--- /dev/null
+++ b/test/files/run/bug4592.scala
@@ -0,0 +1,10 @@
+object Test {
+ def repeat[T](count: Int = 1, x: Boolean = true)(thunk: => T) : T = (0 until count).map(_ => thunk).last
+ def repeat[T](thunk: => T) : T = repeat()(thunk)
+
+ def main(args: Array[String]): Unit = {
+ println(repeat(3.14))
+ println(repeat(count=5)(3.14))
+ println(repeat(count=5,x=false)(3.14))
+ }
+}