Support increment and '*=' operations on inline properties
This commit is contained in:
+34
@@ -0,0 +1,34 @@
|
||||
// FILE: 1.kt
|
||||
package test
|
||||
|
||||
class A {
|
||||
var result = 1
|
||||
|
||||
inline var Int.z: Int
|
||||
get() = result
|
||||
set(value) {
|
||||
result = value + this
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// FILE: 2.kt
|
||||
import test.*
|
||||
|
||||
|
||||
fun box(): String {
|
||||
with(A()) {
|
||||
1.z += 0
|
||||
if (1.z != 2) return "fail 1: $result"
|
||||
|
||||
var p = 1.z++
|
||||
if (1.z != 4) return "fail 2: $result"
|
||||
if (p != 2) return "fail 3: $p"
|
||||
|
||||
p = ++1.z
|
||||
if (1.z != 6) return "fail 4: $result"
|
||||
if (p != 6) return "fail 5: $p"
|
||||
}
|
||||
|
||||
return "OK"
|
||||
}
|
||||
Reference in New Issue
Block a user