Refactoring: make "replace get or set" an inspection
This commit is contained in:
+9
@@ -0,0 +1,9 @@
|
||||
// PROBLEM: none
|
||||
// ERROR: Unresolved reference: got
|
||||
fun test() {
|
||||
class Test{
|
||||
operator fun get(i: Int) : Int = 0
|
||||
}
|
||||
val test = Test()
|
||||
test.g<caret>ot(0)
|
||||
}
|
||||
Reference in New Issue
Block a user