Files
kotlin-fork/compiler/testData/diagnostics/tests/smartCasts/shortIfExprNotNull.kt
T
2015-12-11 15:17:37 +03:00

10 lines
191 B
Kotlin
Vendored

fun baz(s: String?): String {
val t = if (s != null) s
else {
val u: String? = null
if (u == null) return ""
u
}
return <!DEBUG_INFO_SMARTCAST!>t<!>
}