Files
kotlin-fork/idea/testData/inspectionsLocal/conventionNameCalls/replaceGetOrSet/extensionFunction.kt
T
2017-12-26 18:39:47 +03:00

9 lines
123 B
Kotlin
Vendored

fun test() {
class Test()
operator fun Test.get(i: Int) : Int = 0
val test = Test()
test.g<caret>et(0)
}