Skip to content

Commit 847cce2

Browse files
Merge pull request #14107 from Atry/patch-2
Use =>> instead of => for printing a LambdaTypeTree
2 parents 0a834ff + 57c34f5 commit 847cce2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/src/scala/quoted/runtime/impl/printers/SourceCode.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1056,7 +1056,7 @@ object SourceCode {
10561056

10571057
case LambdaTypeTree(tparams, body) =>
10581058
printTargsDefs(tparams.zip(tparams), isDef = false)
1059-
this += highlightTypeDef(" => ")
1059+
this += highlightTypeDef(" =>> ")
10601060
printTypeOrBoundsTree(body)
10611061

10621062
case TypeBind(name, _) =>

0 commit comments

Comments
 (0)