"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
+13
@@ -0,0 +1,13 @@
|
||||
// PROBLEM: none
|
||||
|
||||
class Test {
|
||||
companion object {
|
||||
fun extentionFun() = 1
|
||||
}
|
||||
|
||||
fun test() {
|
||||
<caret>Companion.extentionFun()
|
||||
}
|
||||
}
|
||||
|
||||
fun Test.extentionFun() = 2
|
||||
Reference in New Issue
Block a user