summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/files/run/bug4592.check3
-rw-r--r--test/files/run/bug4592.scala10
2 files changed, 13 insertions, 0 deletions
diff --git a/test/files/run/bug4592.check b/test/files/run/bug4592.check
new file mode 100644
index 0000000000..e133386482
--- /dev/null
+++ b/test/files/run/bug4592.check
@@ -0,0 +1,3 @@
+3.14
+3.14
+3.14
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))
+ }
+}