aboutsummaryrefslogtreecommitdiff
path: root/test/test/DeSugarTest.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/test/DeSugarTest.scala')
-rw-r--r--test/test/DeSugarTest.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test/DeSugarTest.scala b/test/test/DeSugarTest.scala
index ba6be7cef..be4dcbd4f 100644
--- a/test/test/DeSugarTest.scala
+++ b/test/test/DeSugarTest.scala
@@ -55,8 +55,8 @@ class DeSugarTest extends ParserTest {
cpy.CaseDef(tree1, transform(pat, Pattern), transform(guard), transform(body))
case SeqLiteral(elems) =>
cpy.SeqLiteral(tree1, transform(elems))
- case UnApply(fun, args) =>
- cpy.UnApply(tree1, transform(fun, Expr), transform(args))
+ case UnApply(fun, implicits, patterns) =>
+ cpy.UnApply(tree1, transform(fun, Expr), transform(implicits), transform(patterns))
case ValDef(mods, name, tpt, rhs) =>
cpy.ValDef(tree1, mods, name, transform(tpt, Type), transform(rhs))
case DefDef(mods, name, tparams, vparamss, tpt, rhs) =>