Files
kotlin-fork/compiler/testData/ir/interpreter/elvis.kt
T
2021-06-07 15:35:12 +03:00

6 lines
190 B
Kotlin
Vendored

@CompileTimeCalculation
fun getLenght(value: String?): Int = value?.length ?: -1
const val a1 = <!EVALUATED: `5`!>getLenght("Elvis")<!>
const val a2 = <!EVALUATED: `-1`!>getLenght(null)<!>