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

10 lines
180 B
Kotlin
Vendored

fun foo(p: String?, p1: Any?) {
if (p1 == null) return
fun localError(): Nothing = throw Exception()
if (p == null) {
localError()
}
<caret>p.length
}