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

8 lines
142 B
Kotlin
Vendored

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