Files
kotlin-fork/compiler/testData/ir/interpreter/copyReceivedValue.kt
T
2022-03-30 08:35:21 +00:00

9 lines
160 B
Kotlin
Vendored

@CompileTimeCalculation
fun Int.minusOne(): Int {
var value = this
value = value - 1
return this
}
const val a = <!EVALUATED: `5`!>5.minusOne()<!>