"Redundant Companion": Don't suggest if same callable name is in use
So #KT-24425 Fixed
This commit is contained in:
committed by
Mikhail Glukhikh
parent
a2435ff3b0
commit
5ad98a139d
Vendored
+11
@@ -0,0 +1,11 @@
|
||||
class Test {
|
||||
companion object {
|
||||
fun f(x: Int, y: Int) = 1
|
||||
}
|
||||
|
||||
fun f(x: Int, y: String) = 2
|
||||
|
||||
fun test() {
|
||||
<caret>Companion.f(1, 2)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user