mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 08:31:29 +00:00
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
|
|
} |