Files
kotlin-fork/idea/testData/intentions/replaceSubstringWithSubstringBefore/immutableProperty.kt
T
2016-01-13 19:05:50 +03:00

7 lines
104 B
Kotlin
Vendored

// WITH_RUNTIME
class A(val x: String)
fun foo(a: A) {
a.x.substring<caret>(0, a.x.indexOf('x'))
}