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

10 lines
148 B
Kotlin
Vendored

// WITH_RUNTIME
// PROBLEM: none
class A() {
fun bar(): String = null!!
}
fun foo(a: A) {
a.bar().substring<caret>(a.bar().indexOf('x'))
}