Files
kotlin-fork/idea/testData/intentions/replaceSingleLineLetIntention/multipleUsages.kt
T
2017-03-24 16:20:00 +03:00

8 lines
153 B
Kotlin
Vendored

// IS_APPLICABLE: false
// WITH_RUNTIME
fun foo(s: String) {
if (s.substring(1).let<caret> { it.startsWith("a") || it[1].isLowerCase() }) {
}
}