Files
kotlin/idea/testData/resolve/partialBodyResolve/LocalNothingFun.kt

10 lines
182 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()
}