Files
kotlin-fork/js/js.translator/testData/box/propertyAccess/packageCustomAccessors.kt
T

16 lines
180 B
Kotlin
Vendored

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