Files
kotlin-fork/backend.native/tests/codegen/object/fields.kt
T
2016-11-17 12:25:12 +03:00

9 lines
172 B
Kotlin

private var globalValue = 1
var global:Int
get() = globalValue
set(value:Int) {globalValue = value}
fun globalTest(i:Int):Int {
global += i
return global
}