Files
kotlin/compiler/testData/diagnostics/tests/nullabilityAndSmartCasts/dataFlowInfoAfterExclExcl.kt
2014-10-01 18:52:52 +04:00

8 lines
165 B
Kotlin
Vendored

fun foo(d: Any?) {
if (d is String?) {
<!DEBUG_INFO_SMARTCAST!>d<!>!!
doString(<!DEBUG_INFO_SMARTCAST!>d<!>)
}
}
fun doString(s: String) = s