mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 08:31:35 +00:00
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() |