Files
kotlin-fork/compiler/testData/diagnostics/tests/smartCasts/inference/kt1275.kt
T
2015-07-10 15:05:07 +03:00

11 lines
246 B
Kotlin
Vendored

// !CHECK_TYPE
fun foo(s : String?, b : Boolean) {
if (s == null) return
val s1 = if (b) "" else <!DEBUG_INFO_SMARTCAST!>s<!>
s1 checkType { _<String>() }
val s2 = s
<!DEBUG_INFO_SMARTCAST!>s2<!> checkType { _<String>() }
}