blob: b56751642b81f3bd9a23b753d225c5e641d12225 [file]
val prop: Nothing
get() = throw Exception()
fun foo(p: Any) {
if (p !is String) {
prop
}
println(<caret>p.length)
}