Skip to content

Commit e7da0a8

Browse files
committed
bugfix: Fix issues after backporting
1 parent 75c4717 commit e7da0a8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

compiler/src/dotty/tools/dotc/ast/Desugar.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ object desugar {
282282

283283
rhs match
284284
case MacroTree(call) =>
285-
cpy.DefDef(meth)(rhs = call, paramss = newParamss).withMods(meth.mods | Macro | Erased)
285+
cpy.DefDef(meth)(rhs = call, paramss = paramssNoContextBounds).withMods(meth.mods | Macro | Erased)
286286
case _ =>
287287
addEvidenceParams(
288288
cpy.DefDef(meth)(

0 commit comments

Comments
 (0)