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 a9ef28c commit f791a52Copy full SHA for f791a52
compiler/src/dotty/tools/dotc/typer/Deriving.scala
@@ -193,7 +193,7 @@ trait Deriving { this: Typer =>
193
if (nparams == 0) Nil
194
else if (nparams == 1) tparam :: Nil
195
else typeClass.typeParams.map(tcparam =>
196
- tparam.copy(name = s"${tparam.name}_${tcparam.name}".toTypeName)
+ tparam.copy(name = s"${tparam.name}_$$_${tcparam.name}".toTypeName)
197
.asInstanceOf[TypeSymbol])
198
}
199
val firstKindedParamss = clsParamss.filter {
0 commit comments