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