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

9 lines
154 B
Kotlin
Vendored

fun foo(o: Any?, p: Int) {
if (p > 0) {
if (o == null) return
}
else {
if (o !is String) return
}
<caret>o.javaClass
}