mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 08:31:29 +00:00
11 lines
170 B
Kotlin
Vendored
11 lines
170 B
Kotlin
Vendored
// IGNORE_BACKEND: JVM_IR
|
|
fun test() {
|
|
val value = System.getProperty("key")
|
|
if (value != null) {
|
|
value.toUpperCase()
|
|
}
|
|
}
|
|
|
|
// 1 IFNULL
|
|
// 0 IFNONNULL
|