6 lines
97 B
Kotlin
Vendored
6 lines
97 B
Kotlin
Vendored
fun test(a: Any?, b: Any?, c: Any) =
|
|
a ?: b ?: c
|
|
|
|
// 2 IFNONNULL
|
|
// 0 IFNULL
|
|
// 0 ACONST_NULL |