Files
kotlin-fork/idea/testData/resolve/partialBodyResolve/IfNotIsNothingProp.kt
T

9 lines
138 B
Kotlin

val prop: Nothing
get() = throw Exception()
fun foo(p: Any) {
if (p !is String) {
prop
}
println(<caret>p.size)
}