7 lines
91 B
Kotlin
Vendored
7 lines
91 B
Kotlin
Vendored
fun foo(p: Any?) {
|
|
do {
|
|
print(p!!)
|
|
} while (x())
|
|
|
|
<caret>p.hashCode()
|
|
} |