7 lines
114 B
Kotlin
Vendored
7 lines
114 B
Kotlin
Vendored
// "Surround with null check" "true"
|
|
|
|
fun foo(x: String?) {
|
|
bar(<caret>x)
|
|
}
|
|
|
|
fun bar(s: String) = s.hashCode() |