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

6 lines
108 B
Kotlin
Vendored

fun foo(p: Any) {
if (p !is String) {
error("Not String")
}
println(<caret>p.length())
}