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 3f42e53 commit 6bded27Copy full SHA for 6bded27
compiler/src/dotty/tools/dotc/reporting/messages.scala
@@ -2744,7 +2744,7 @@ class MissingImplicitArgument(
2744
// show all available additional info
2745
def hiddenImplicitNote(s: SearchSuccess) =
2746
i"\n\nNote: ${s.ref.symbol.showLocated} was not considered because it was not imported with `import given`."
2747
- def noChainConversionsNote(s: Iterable[TermRef]): Option[String] =
+ def noChainConversionsNote(ignoredConversions: Iterable[TermRef]): Option[String] =
2748
Option.when(s.nonEmpty)(
2749
i"\n\nNote: Chaining implicit conversions are not allowed in Scala. " +
2750
i"The following conversions are in scope:${s.map(g => s"\n - ${g.symbol.showDcl}").mkString}" +
0 commit comments