14 lines
369 B
Plaintext
Vendored
14 lines
369 B
Plaintext
Vendored
Resolve target: value-parameter p: kotlin.String?
|
|
----------------------------------------------
|
|
fun foo(p: String?) {
|
|
class LocalClass {
|
|
fun f(): String? {
|
|
/* STATEMENT DELETED: if (p == null) return null */
|
|
/* STATEMENT DELETED: print(p.size) */
|
|
/* STATEMENT DELETED: return "" */
|
|
}
|
|
}
|
|
|
|
<caret>p?.size
|
|
}
|