blob: a653409961f16ca828b1733075abd4745e871e52 [file]
Resolve target: val s: kotlin.String? smart-cast to kotlin.String
----------------------------------------------
class C(val s: String?) {
fun foo(p: Boolean) {
if (p) {
print(s!!)
}
else {
print(this.s!!)
}
<caret>s.length
}
}