Files
kotlin-fork/compiler/testData/codegen/box/jvmName/propertyName.kt
T
2016-11-09 21:41:12 +03:00

18 lines
271 B
Kotlin
Vendored

// TODO: muted automatically, investigate should it be ran for JS or not
// IGNORE_BACKEND: JS
// WITH_RUNTIME
var v: Int = 1
@JvmName("vget")
get
@JvmName("vset")
set
fun box(): String {
v += 1
if (v != 2) return "Fail: $v"
return "OK"
}