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

9 lines
133 B
Kotlin

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