Files

7 lines
93 B
Kotlin
Vendored

// FIR_IDENTICAL
var my: Int = 0
get() = -field
set(arg) {
field = arg
}