Files
kotlin-fork/compiler/testData/codegen/boxWithStdlib/platformNames/propertyName.kt
T
2015-06-12 09:23:31 +03:00

14 lines
193 B
Kotlin
Vendored

import kotlin.platform.*
var v: Int = 1
@platformName("vget")
get
@platformName("vset")
set
fun box(): String {
v += 1
if (v != 2) return "Fail: $v"
return "OK"
}