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 333c068 commit 53c202fCopy full SHA for 53c202f
compiler/src/dotty/tools/dotc/typer/RefChecks.scala
@@ -654,9 +654,9 @@ object RefChecks {
654
655
val missingMethods = grouped.toList flatMap {
656
case (name, syms) =>
657
- syms.filterConserve(! _.isSetter)
658
- .groupBy(_.signature) // Avoid duplication for similar definitions (#19731)
659
- .map(f => f._2.head) // _1: Closest undefined method to the scope
+ syms.filterConserve(!_.isSetter)
+ .groupBy(_.signature) // Avoid duplication for similar definitions (#19731)
+ .map(f => f._2.head) // _1: Closest undefined method to the scope
660
}
661
662
def stubImplementations: List[String] = {
0 commit comments