summaryrefslogtreecommitdiff
path: root/test/files/run/delambdafy_uncurry_byname_inline.scala
diff options
context:
space:
mode:
authorJames Iry <james.iry@typesafe.com>2013-07-22 17:45:36 -0700
committerJames Iry <james.iry@typesafe.com>2013-11-06 12:28:04 -0800
commit10a061d425857c9e7bf4fa9aba9923b90467e24e (patch)
treea619f5e66a25a05da71cbbf24a282c4c17d4fb3c /test/files/run/delambdafy_uncurry_byname_inline.scala
parent9136e76ca1a9827e1a8c90fa4f7f63c2967cb019 (diff)
downloadscala-10a061d425857c9e7bf4fa9aba9923b90467e24e.tar.gz
scala-10a061d425857c9e7bf4fa9aba9923b90467e24e.tar.bz2
scala-10a061d425857c9e7bf4fa9aba9923b90467e24e.zip
Adds a setting to delay delambdafication. If set then uncurry lifts
the body of a lambda into a local def. Tests are included to show the different tree shapes.
Diffstat (limited to 'test/files/run/delambdafy_uncurry_byname_inline.scala')
-rw-r--r--test/files/run/delambdafy_uncurry_byname_inline.scala20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/files/run/delambdafy_uncurry_byname_inline.scala b/test/files/run/delambdafy_uncurry_byname_inline.scala
new file mode 100644
index 0000000000..8f480fa804
--- /dev/null
+++ b/test/files/run/delambdafy_uncurry_byname_inline.scala
@@ -0,0 +1,20 @@
+import scala.tools.partest._
+import java.io.{Console => _, _}
+
+object Test extends DirectTest {
+
+ override def extraSettings: String = "-usejavacp -Xprint:uncurry -Ydelambdafy:inline -d " + testOutput.path
+
+ override def code = """class Foo {
+ | def bar(x: => Int) = x
+ |
+ | def foo = bar(1)
+ |}
+ |""".stripMargin.trim
+
+ override def show(): Unit = {
+ Console.withErr(System.out) {
+ compile()
+ }
+ }
+}