summaryrefslogtreecommitdiff
path: root/test/files/run/delambdafy_uncurry_byname_method.check
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/delambdafy_uncurry_byname_method.check')
-rw-r--r--test/files/run/delambdafy_uncurry_byname_method.check15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/files/run/delambdafy_uncurry_byname_method.check b/test/files/run/delambdafy_uncurry_byname_method.check
new file mode 100644
index 0000000000..cd3edc7d6f
--- /dev/null
+++ b/test/files/run/delambdafy_uncurry_byname_method.check
@@ -0,0 +1,15 @@
+[[syntax trees at end of uncurry]] // newSource1.scala
+package <empty> {
+ class Foo extends Object {
+ def <init>(): Foo = {
+ Foo.super.<init>();
+ ()
+ };
+ def bar(x: () => Int): Int = x.apply();
+ def foo(): Int = Foo.this.bar({
+ final <artifact> def $anonfun(): Int = 1;
+ (() => $anonfun())
+ })
+ }
+}
+