Closed
Description
Compiler version
3.0.0
Minimized code
package blah // Remove the package decl, message goes away
trait AA[E]
object AA {
given givenSeqToItem[E]: Conversion[E, AA[E]] with
def apply(s: E): AA[E] = ???
}
Output
Variable implicitConversion undefined in comment for class Conversion in class Conversion
Note that this message is not prefixed by [warn]
, [info]
, etc., and is not included in the warning count.
Possibly this is debugging output leaking out?
Expectation
Either this line should not appear, or should be a more actionable message with file/line number and counted as a warning. And it seems like the package
shouldn't matter.