-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Nowarn extension matching nonpublic member (#21825)
Fixes #21816 Consider only public members when checking if an extension method actually extends. A use site lint would be more thorough, when an extension is in scope but unused because of a visible matching member.
- Loading branch information
Showing
2 changed files
with
30 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
|
||
case class CC(a: String, b: String) extends Iterable[String] { | ||
override def iterator: Iterator[String] = Iterator(a, b) | ||
} | ||
|
||
trait T { | ||
extension (cc: CC) def className: String = "foo" | ||
} | ||
|
||
object O extends T { | ||
def foo = { | ||
val cc = CC("a", "b") | ||
println(cc.className) | ||
} | ||
} | ||
|
||
@main def main() = O.foo |