10 lines
193 B
Kotlin
Vendored
10 lines
193 B
Kotlin
Vendored
// !DIAGNOSTICS: -UNUSED_PARAMETER
|
|
fun foo(arg: Int?) {
|
|
run {
|
|
var x = arg
|
|
while (x != null) {
|
|
x = x.hashCode()
|
|
if (x == 0) x = null
|
|
}
|
|
}
|
|
} |