4cd7193047
#KT-11018 Fixed
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
|
|
}
|