Files
kotlin-fork/idea/testData/resolve/partialBodyResolve/IfNotIsError.kt
T
2014-11-24 20:11:25 +03:00

6 lines
104 B
Kotlin

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