Files
kotlin-fork/idea/testData/resolve/partialBodyResolve/LocalNothingFun.dump
T
2014-12-18 15:48:27 +03:00

13 lines
333 B
Plaintext

Resolve target: value-parameter val p: kotlin.String? smart-cast to kotlin.String
----------------------------------------------
fun foo(p: String?, p1: Any?) {
/* STATEMENT DELETED: if (p1 == null) return */
fun localError(): Nothing = throw Exception()
if (p == null) {
localError()
}
<caret>p.size
}