mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 15:53:55 +00:00
10 lines
211 B
Plaintext
Vendored
10 lines
211 B
Plaintext
Vendored
Resolve target: value-parameter p: kotlin.Any? smart-cast to kotlin.Any
|
|
----------------------------------------------
|
|
fun foo(p: Any?) {
|
|
do {
|
|
print(p!!)
|
|
} while (x())
|
|
|
|
<caret>p.hashCode()
|
|
}
|