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

13 lines
257 B
Kotlin
Vendored

public fun fooNotNull(s: String) {
System.out.println("Length of $s is ${s.length}")
}
public fun foo() {
var s: String? = "not null"
if (s == null) {
// Coming soon
} else {
fooNotNull(<!DEBUG_INFO_SMARTCAST!>s<!>)
}
}