Files
kotlin-fork/idea/testData/inspectionsLocal/replaceSubstring/withDropLast/immutableProperty.kt
T
2019-05-29 11:00:28 +07:00

7 lines
102 B
Kotlin
Vendored

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