blob: ed14c296ccedc95ef6c44087bdad1393d6091120 [file]
Resolve target: value-parameter p: kotlin.Any smart-cast to kotlin.String
----------------------------------------------
val prop: Nothing
get() = throw Exception()
fun foo(p: Any) {
if (p !is String) {
prop
}
println(<caret>p.length)
}