Files
kotlin-fork/idea/testData/intentions/conventionNameCalls/replaceGet/extensionFunction.kt
T
2015-05-14 01:10:05 +03:00

8 lines
113 B
Kotlin

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