6 lines
58 B
Kotlin
Vendored
6 lines
58 B
Kotlin
Vendored
val a : Int? = 10
|
|
|
|
fun foo() = a?.toString()
|
|
|
|
// 1 IFNULL
|