9 lines
142 B
Kotlin
Vendored
9 lines
142 B
Kotlin
Vendored
val prop: Nothing
|
|
get() = throw Exception()
|
|
|
|
fun foo(p: Any) {
|
|
if (p !is String) {
|
|
prop
|
|
}
|
|
println(<caret>p.length())
|
|
} |