7 lines
111 B
Kotlin
Vendored
7 lines
111 B
Kotlin
Vendored
fun foo(p: Boolean?, p1: Any?) {
|
|
if (p!!) {
|
|
print(p1!!.hashCode())
|
|
}
|
|
|
|
<caret>p.hashCode()
|
|
} |