10 lines
213 B
Kotlin
Vendored
10 lines
213 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)
|
|
fooNotNull(<!DEBUG_INFO_SMARTCAST!>s<!>)
|
|
}
|