24 lines
516 B
Kotlin
Vendored
24 lines
516 B
Kotlin
Vendored
// !LANGUAGE: +ContextReceivers
|
|
// TARGET_BACKEND: JVM_IR
|
|
|
|
data class MyContainer(var s: String)
|
|
|
|
context(Int)
|
|
operator fun MyContainer.get(index: Int): String? {
|
|
return if (index == 0 && this@Int == 42) s else null
|
|
}
|
|
|
|
context(Int)
|
|
operator fun MyContainer.set(index: Int, value: String) {
|
|
if (index != 0 || this@Int != 42) return
|
|
s = value
|
|
}
|
|
|
|
fun box(): String {
|
|
return with(42) {
|
|
val myContainer = MyContainer("fail")
|
|
myContainer[0] = "OK"
|
|
myContainer[0] ?: "fail"
|
|
}
|
|
}
|