Files
kotlin-fork/idea/testData/resolve/partialBodyResolve/IfNotIsNothingProp.kt
T
Pavel Kirpichenkov 83144d59be Fix tests
2020-06-10 10:58:42 +03:00

9 lines
140 B
Kotlin
Vendored

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