summaryrefslogtreecommitdiff
path: root/sources/scalac/transformer/UnCurry.java
diff options
context:
space:
mode:
Diffstat (limited to 'sources/scalac/transformer/UnCurry.java')
-rw-r--r--sources/scalac/transformer/UnCurry.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/scalac/transformer/UnCurry.java b/sources/scalac/transformer/UnCurry.java
index 40e23e7282..461fa150df 100644
--- a/sources/scalac/transformer/UnCurry.java
+++ b/sources/scalac/transformer/UnCurry.java
@@ -93,7 +93,7 @@ public class UnCurry extends OwnerTransformer
Tree tpe1 = gen.mkType(tpe.pos, newtype);
return copy.ValDef(tree, mods1, name, tpe1, rhs).setType(newtype);
} else {
- return tree;
+ return super.transform(tree);
}
case TypeApply(Tree fn, Tree[] args):