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

15 lines
147 B
Kotlin
Vendored

package foo
var a: Int
get() {
return 5
}
set(b) {
}
fun box(): String {
return if (a == 5) "OK" else "fail: $a"
}