blob: 437ba3555a5ee6a6503f61426445626066acfa37 [file]
Resolve target: value-parameter p: kotlin.String? smart-cast to kotlin.String
----------------------------------------------
fun foo(p: String?, p1: Any?) {
/* STATEMENT DELETED: if (p1 == null) return */
fun localError(): Nothing = throw Exception()
if (p == null) {
localError()
}
<caret>p.length
}