Files
kotlin-fork/compiler/testData/diagnostics/tests/smartCasts/kt5427.kt
T
2015-10-14 20:39:35 +03:00

6 lines
155 B
Kotlin
Vendored

fun foo(p: String?): Int {
// We should get smart cast here
val x = if (p != null) { <!DEBUG_INFO_SMARTCAST!>p<!> } else "a"
return x.length
}