Files
kotlin-fork/idea/testData/inspectionsLocal/replaceWithIgnoreCaseEquals/nullable.kt
T
2020-07-08 12:38:30 +02:00

4 lines
114 B
Kotlin
Vendored

// WITH_RUNTIME
fun test(a: String?, b: String): Boolean {
return <caret>a?.toLowerCase() == b.toLowerCase()
}