Files
kotlin-fork/compiler/testData/codegen/box/extensionFunctions/contextReceivers/arrayAccessCompositeOperators.kt
T
2022-04-06 16:05:39 +00:00

33 lines
703 B
Kotlin
Vendored

// !LANGUAGE: +ContextReceivers
// TARGET_BACKEND: JVM_IR
data class MyContainer(var i: Int)
var operationScore = 0
context(Int)
operator fun MyContainer.get(index: Int): Int {
operationScore += this@Int
return if (index == 0) i else -1
}
context(Int)
operator fun MyContainer.plusAssign(other: MyContainer) {
operationScore += this@Int
i += other.i
}
context(Int)
operator fun MyContainer.inc(): MyContainer {
operationScore += this@Int
return MyContainer(i + 1)
}
fun box(): String {
var myContainer = MyContainer(0)
with(1) {
myContainer += MyContainer(myContainer++[0])
}
return if (myContainer.i == 1 && operationScore == 3) "OK" else "fail"
}