mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
14 lines
166 B
Kotlin
Vendored
14 lines
166 B
Kotlin
Vendored
// !API_VERSION: LATEST
|
|
|
|
fun test(s: String?): Int {
|
|
s!!
|
|
if (s == null) {
|
|
return 5
|
|
}
|
|
return 3
|
|
}
|
|
|
|
// 1 checkNotNull
|
|
// 0 IFNULL
|
|
// 0 IFNONNULL
|