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

7 lines
86 B
Plaintext
Vendored

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