Fix false positive in redundant companion reference #KT-23435 Fixed

This commit is contained in:
Toshiaki Kameyama
2018-03-27 16:26:19 +02:00
committed by Mikhail Glukhikh
parent 3bc7eefad9
commit e96b5f3117
3 changed files with 27 additions and 4 deletions
@@ -0,0 +1,15 @@
// PROBLEM: none
class C {
companion object {
}
}
class Test {
fun foo(i: Any) {
}
fun test() {
this.foo(<caret>C)
}
}