Explicit this inspection: fix false negative with local variable
#KT-30136 Fixed
This commit is contained in:
committed by
Mikhail Glukhikh
parent
eb469b924f
commit
0ec18b4a33
+14
@@ -0,0 +1,14 @@
|
||||
// PROBLEM: none
|
||||
class Some {
|
||||
operator fun invoke() {}
|
||||
}
|
||||
|
||||
class Other {
|
||||
fun foo() {
|
||||
val a = Some()
|
||||
<caret>this.a()
|
||||
a()
|
||||
}
|
||||
|
||||
fun a() {}
|
||||
}
|
||||
Reference in New Issue
Block a user