blob: 4035fe350c4e89c4f76bfcdf5c769121b0d8be98 [file]
fun box(): String = runAll(
"test1" to { test1() },
"test2" to { test2() },
)
fun test1() {
var i = 3
assert(i-- == 4)
}
fun test2() {
var a = false
assert(a--)
}
operator fun Boolean.dec() = !this