9 lines
151 B
Kotlin
Vendored
9 lines
151 B
Kotlin
Vendored
fun foo(p: String?) {
|
|
fun local(): String? {
|
|
if (p == null) return null
|
|
print(p.size)
|
|
return ""
|
|
}
|
|
|
|
<caret>p?.size
|
|
} |