mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 15:53:55 +00:00
12 lines
324 B
Plaintext
Vendored
12 lines
324 B
Plaintext
Vendored
Resolve target: value-parameter p: kotlin.String?
|
|
----------------------------------------------
|
|
fun foo(p: String?) {
|
|
fun local(): String? {
|
|
/* STATEMENT DELETED: if (p == null) return null */
|
|
/* STATEMENT DELETED: print(p.size) */
|
|
/* STATEMENT DELETED: return "" */
|
|
}
|
|
|
|
<caret>p?.size
|
|
}
|