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

6 lines
113 B
Kotlin
Vendored

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