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

7 lines
87 B
Plaintext
Vendored

// WITH_RUNTIME
class A(val x: String)
fun foo(a: A) {
a.x.substringBefore('x')
}