summaryrefslogtreecommitdiff
path: root/test/files/run/t6434.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t6434.scala')
-rw-r--r--test/files/run/t6434.scala7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/files/run/t6434.scala b/test/files/run/t6434.scala
index e4a4579613..6b6a783299 100644
--- a/test/files/run/t6434.scala
+++ b/test/files/run/t6434.scala
@@ -5,4 +5,11 @@ object Test extends ReplTest {
"""def f(x: => Int): Int = x
f _
"""
+
+ // replace indylambda function names by <function1>
+ override def eval() = {
+ val lines = super.eval
+ val r = """\$\$Lambda.*""".r
+ lines.map(l => r.replaceAllIn(l, "<function1>"))
+ }
}