Files
kotlin-fork/js/js.translator/testData/box/propertyAccess/customSetter.kt
T
2016-09-29 12:00:42 +03:00

14 lines
218 B
Kotlin
Vendored

package foo
class Test() {
var a: Int = 5
set(b: Int) {
field = 3
}
}
fun box(): String {
var test = Test()
test.a = 5
return if (test.a == 3) "OK" else "fail: ${test.a}"
}