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

5 lines
129 B
Kotlin
Vendored

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