We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent daabc81 commit cebfdd8Copy full SHA for cebfdd8
compiler/src/dotty/tools/dotc/core/quoted/PickledQuotes.scala
@@ -74,7 +74,7 @@ object PickledQuotes {
74
override def transform(tree: tpd.Tree)(implicit ctx: Context): tpd.Tree = tree match {
75
case Hole(isTerm, idx, args) =>
76
val reifiedArgs = args.map { arg =>
77
- if (arg.isTerm) (qctx: scala.quoted.QuoteContext) ?=> new TastyTreeExpr(arg, QuoteContext.scopeId)
+ if (arg.isTerm) (using qctx: scala.quoted.QuoteContext) => new TastyTreeExpr(arg, QuoteContext.scopeId)
78
else new TreeType(arg, QuoteContext.scopeId)
79
}
80
if isTerm then
0 commit comments