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

10 lines
149 B
Kotlin
Vendored

// WITH_RUNTIME
// PROBLEM: none
class A() {
fun bar(): String = null!!
}
fun foo(a: A) {
a.bar().substring<caret>(0, a.bar().length - 5)
}