Files
kotlin-fork/idea/idea-completion/testData/handlers/basic/ReplaceFunctionCallByProperty.kt
T
2015-05-16 17:15:11 +03:00

11 lines
109 B
Kotlin
Vendored

class C {
val bar: Int
}
fun foo(c: C) {
val v = c.<caret>getBar()
}
// ELEMENT: bar
// CHAR: '\t'