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