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

4 lines
102 B
Plaintext
Vendored

// WITH_RUNTIME
fun test(a: String, b: String?): Boolean {
return a.equals(b, ignoreCase = true)
}