5 lines
114 B
Kotlin
Vendored
5 lines
114 B
Kotlin
Vendored
// "Surround with null check" "true"
|
|
|
|
fun foo(arg: Int?, flag: Boolean) {
|
|
while (flag) arg<caret>.hashCode()
|
|
} |