Files
kotlin-fork/idea/testData/resolve/partialBodyResolve/IfNotIsThrow.kt
T

6 lines
121 B
Kotlin
Vendored

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