From 57c34f519b5122fb5f2f780036852a524c618f0f Mon Sep 17 00:00:00 2001 From: "Yang, Bo" Date: Mon, 13 Dec 2021 18:12:29 -0800 Subject: [PATCH] Use =>> instead of => for printing a LambdaTypeTree --- .../src/scala/quoted/runtime/impl/printers/SourceCode.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/src/scala/quoted/runtime/impl/printers/SourceCode.scala b/compiler/src/scala/quoted/runtime/impl/printers/SourceCode.scala index 77a54e23ad61..d92c16cfe54d 100644 --- a/compiler/src/scala/quoted/runtime/impl/printers/SourceCode.scala +++ b/compiler/src/scala/quoted/runtime/impl/printers/SourceCode.scala @@ -1056,7 +1056,7 @@ object SourceCode { case LambdaTypeTree(tparams, body) => printTargsDefs(tparams.zip(tparams), isDef = false) - this += highlightTypeDef(" => ") + this += highlightTypeDef(" =>> ") printTypeOrBoundsTree(body) case TypeBind(name, _) =>