Fix false positive in redundant companion reference #KT-23435 Fixed
This commit is contained in:
committed by
Mikhail Glukhikh
parent
3bc7eefad9
commit
e96b5f3117
@@ -0,0 +1,15 @@
|
||||
// PROBLEM: none
|
||||
|
||||
class C {
|
||||
companion object {
|
||||
}
|
||||
}
|
||||
|
||||
class Test {
|
||||
fun foo(i: Any) {
|
||||
}
|
||||
|
||||
fun test() {
|
||||
this.foo(<caret>C)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user