10 lines
131 B
Kotlin
Vendored
10 lines
131 B
Kotlin
Vendored
fun x(): Boolean{}
|
|
|
|
fun foo(p: Any?) {
|
|
while(true) {
|
|
print(p!!)
|
|
if (x()) break
|
|
}
|
|
|
|
<caret>p.hashCode()
|
|
} |