KT-9628 Intention&inspection to replace use of "set" operator function with []

#KT-9628 Fixed
This commit is contained in:
Valentin Kipyatkov
2015-10-20 16:01:04 +03:00
parent 852579e7f3
commit 66310806ca
51 changed files with 248 additions and 126 deletions
@@ -0,0 +1,8 @@
// IS_APPLICABLE: false
fun test() {
class Test{
operator fun get(a: Int=1, b: Int=2) : Int = 0
}
val test = Test()
test.g<caret>et(b=3)
}