4 lines
83 B
Kotlin
Vendored
4 lines
83 B
Kotlin
Vendored
fun foo(o: String?, o1: String) {
|
|
if (o != o1) return
|
|
<caret>o.hashCode()
|
|
} |