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

9 lines
160 B
Kotlin
Vendored

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